|
Science Forum Index » Cryptography Forum » RSA algorythm in ASP
Page 1 of 1
|
| Author |
Message |
| Krzyso |
Posted: Sat Jan 03, 2004 5:09 pm |
|
|
|
Guest
|
Hello,
I would like find source code with RSA algorythm in ASP (visualbasic)
language.
Does anybody know where can I find it?
Regards,
Krzyso |
|
|
| Back to top |
|
| Tom St Denis |
Posted: Sat Jan 03, 2004 5:35 pm |
|
|
|
Guest
|
"Krzyso" <krzyso@poczta.onet.pl> wrote in message
news:bt7erm$6en$1@atlantis.news.tpi.pl...
Quote: Hello,
I would like find source code with RSA algorythm in ASP (visualbasic)
language.
Does anybody know where can I find it?
Aside from the sheer kitsch factor of it why? why why why why?
RSA is a fast algo but probably not that fast in VB [or any other
interpretted non-optimized system]. Are you sure you'd want your server to
be doing it the hard way?
I don't think VB has a bignum library so you're best bet is to make some
form of control [ocx or whatever VB uses] that calls native x86 code or
write your own bignum library in VB and pray it works fast ;)
Tom |
|
|
| Back to top |
|
| Tom St Denis |
Posted: Sat Jan 03, 2004 5:35 pm |
|
|
|
Guest
|
"Krzyso" <krzyso@poczta.onet.pl> wrote in message
news:bt7erm$6en$1@atlantis.news.tpi.pl...
Quote: Hello,
I would like find source code with RSA algorythm in ASP (visualbasic)
language.
Does anybody know where can I find it?
Aside from the sheer kitsch factor of it why? why why why why?
RSA is a fast algo but probably not that fast in VB [or any other
interpretted non-optimized system]. Are you sure you'd want your server to
be doing it the hard way?
I don't think VB has a bignum library so you're best bet is to make some
form of control [ocx or whatever VB uses] that calls native x86 code or
write your own bignum library in VB and pray it works fast ;)
Tom |
|
|
| Back to top |
|
| John E. Hadstate |
Posted: Sun Jan 04, 2004 10:26 am |
|
|
|
Guest
|
"Krzyso" <krzyso@poczta.onet.pl> wrote in message
news:bt7erm$6en$1@atlantis.news.tpi.pl...
Quote: Hello,
I would like find source code with RSA algorythm in ASP (visualbasic)
language.
Does anybody know where can I find it?
Regards,
Krzyso
From everything I've been reading, VB.NET supports direct access to the same
crypto libraries that EverythingElse.NET does and I'm 95% certain that the
crypto libraries support RSA.
Calling up my MSDN Library, Jan 2004, filtering on .NET framework, and
searching the Index for RSA gives a reference to RSACryptoServiceProvider
class and dozens of other references following. I think they've got that
base covered. |
|
|
| Back to top |
|
| |