This of any use?
http://www.juicystudio.com
Main Topics
Browse All TopicsHello Experts,
In the classic ASP, could anyone give me a sample to encrypt/decryp password, using 64 based text?
thanks in advance
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This of any use?
http://www.juicystudio.com
Hi nguyenn,
Are you referring to Base64?
Take a look to this: http://www.pstruh.cz/tips/
Cheers!
I just give u one idea on password encryption,
There is an algorithm called md5 encryption, which stores the password in md5 encrypted form in the database.
And, For eg,
if a user logs in to your site using username, password
You will encrypt the supplied password using the same md5 encryption algorithm, and compare it in the database.
So md5 encryption is one way, that is there is no decryption.
If it matches your requirement, post your comment
I am ready to supply the code necessary for the same.
Note :
Even the DBA cannot know what the password is stored in the table
And also, if a member forgets his password, you cannot just see into the table and inform him, the only option is to generate another password and supply it to the user
here is a similar que i asked some time back... juz check out if it helps...
http://www.experts-exchang
Try 1 way hash. Personally I find that it is very secure as even administrators do not know what is the password. Unfortunately, there is no way to decrypt the password.
http://local.15seconds.com
leechoonhwee, i just curious, in my app i have a function to allow the users change their information, including the password. If we cannot decrypt their's password, so the password bring up from the database should be encrypted password, so when they modify their info and save it , will the password encrypt again?
thanks
The user can change the password no problem because you do not need to show them what is their old password, you only need to authenticate them before allowing them to change the password. I have a handful of apps that utilise 1 way hash and so far have proven to be very secure. Just remember that it is always 1 way,
Storing.
Input, encrypt , store.
Authentication.
Input, encrpyt, compare.
Business Accounts
Answer for Membership
by: nguyennPosted on 2004-06-15 at 15:22:06ID: 11319908
it would be great if you give me vbscript source code