vote up 0 vote down star
1

I have a working .NET web application that perform hashing and encryption using MD5 on a certain string. This string will be stored in a cookie.

The problem is, I will need to validate this cookie from an ASP classic application.

From what I know, there are no built in cryptographic providers in ASP classic, thus I may need to copy/write my own implementation of the MD5 algorithm.

Is there any implementation ready to use, preferably open source (I don't want rogue code sending strings around the world), and compatible with the .NET counterpart?

flag

4 Answers

vote up 1 vote down

Create your own .net DLL only with the bytes needed to perform the validation and then call it from ASP!

Here is how: Exposing .NET Components to COM

link|flag
I am thinking about this kind of solution as well, offloading the logic process to a .NET code. Do you have any comparison on performance? This code will be run very often and will be quite critical to the whole application. – Adrian Godong Nov 4 at 9:37
Do you mean the performance of calling a .Net object from ASP? It's negligible from my experience, but you should measure it. – Eduardo Molteni Nov 4 at 12:26
vote up 1 vote down

Much of the .Net Cryptography namespace is just a wrapper around Windows' CryptoAPI, you may be able to work directly with that, but that could end up being a pain. This page may be helpful... http://www.codeproject.com/KB/asp/adrian_bacaianu.aspx

link|flag
Interesting solution, though deployment may be a bit hassle. Worth trying though. – Adrian Godong Nov 3 at 18:34
vote up 1 vote down

A quick web search for VBScript MD5 turned up lots

Rather than cut and paste the nicest one I found was here

link|flag
I know there's a lot. I have one which returns different result with the .NET implementation. – Adrian Godong Nov 3 at 18:27
1  
What you'll probably find is the .NET was using Unicode for the text, and the VBScript one was using ASCII. – blowdart Nov 3 at 18:53
I have specifically use ASCIIEncoder to convert the string object to byte[]. – Adrian Godong Nov 4 at 9:35
Hmmm weird, post samples I think – blowdart Nov 4 at 10:14
vote up 0 vote down

this seem ok

link|flag

Your Answer

Get an OpenID
or

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