• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Create a MD5 hash with ASP?

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Archer36

Member
Joined
Jun 18, 2004
Location
Michigan, US
How would one go about making a MD5 hash with ASP? In php all you do is
PHP:
md5(string)
So how do you make one in ASP?

Thanks
 
Here is a Web Site that has implementations in several languages. Put the ASP version code in a seperate file and include it (<!-- #include file='your_file_name' -->) in and page that you need to use it.

Another alternative would be to use the ActiveX component on that web site(or build your own) and install on the server on use on your page. Since it is compiled, it should be much faster. Also, if you are using ASP.NET, there is an MD5 class.
 
Wow I forgot about this thread, I have decided not to do what was I was going to do. But thanks for the info.
 
Back