Alfonso
|
| Posted: 11/17/2002, 12:34 AM |
|
I would like to know how to put md5 function into CCLoginUser (ASP code).
I have write this:
SQL = "SELECT user_id FROM foros_users WHERE username='" & Replace(Login, "'", "''") & "' AND [user_password]=md5('" & Replace(Password, "'", "''") & ")'"
I don't know if it is wright. Also, where is located md5 function?. I have get a javascript function from http://pajhome.org.uk/crypt/md5.
I need help please.
|
|
|
 |
Mehmet Ozdemir
|
| Posted: 11/17/2002, 2:09 PM |
|
ASP doesn't have a native MD5 hash function, do a google search for VB+MD5. I grabbed a VB MD5 project, complied it as a dll and use it that way.
|
|
|
 |
|