vote up 1 vote down star

I've got a string I want to encrypt, and I want to do so in a way that a "classic" ASP application and an ASP.NET 2.0 application can decrypt it. What's the best way to do it?

I've been scouring the web for different solutions. I've looked at using DPAPI, but it's per-machine, so that's out. Too much work to encrypt it on every single server. I've also considered encrypting the value in the web.config, but "classic" ASP won't be able to read it.

Any other ideas out there?

Thanks in advance!

flag
I've had to try and do the same before; although I was specifically looking for a classic asp library that could decrypt text encrypted by the Rijndael library included in .NET. In the end we were able to rewrite the page in asp.net :-S – Yoooder Aug 11 at 19:10

3 Answers

vote up 0 vote down

You can try to use Chilcat Crypt component in a form of an activex dll for the classic asp page and decrypt the string with the .NET System.Security.Cryptography libraries. In both cases you can use AES/Rinjdael or other encryption algorithm.

link|flag
where would you store the key? – Jason Reis Aug 11 at 19:31
To suggest you a better solution I need to know more about the application. For example, there are different servers? Or just two apps in the same server? Why don't you use a simple file to store the key? or better: Why don't use a calculated key from a relative variable seed with no need to store it? – backslash17 Aug 11 at 20:34
vote up 1 vote down

The old standard of using the Cryptography API COM dll a.k.a. capicom.dll is something you could use. It's not the most strait forward thing I've ever used but it's pretty well documented and it's installed on 99% of the microsoft boxes out there. You can find information on it at http://msdn.microsoft.com/en-us/library/ms995332.aspx. If you write everything in classic asp, then porting it and using PIvoke api in .net to use the same logic should be fairly easy.

link|flag
vote up 0 vote down

I ran into this one on our site which uses ASP & VB.NET. Also, in-house utility programs are written in C#, VB6 & VB.NET. All of the programs needed to be able to exchange encrypted data.

To handle this problem I wrote a VB6 & VBScript encryption routine which I converted to .NET. It allows me to have identical data across the platforms. The encryption & hashing that I selected were RC4 and MD5. Both of which were considerably enhanced with multiple features, such as the MD5 is a salted version and the RC4 contains a CRC check and an option for double encrypting using multiple passkeys.

The base code for the MD5 and RC4 is easily available and they both convert easily.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.