Click here to Skip to main content
15,907,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
how to set password in encrypt format while registering a user with out using login controls.in the same manner how to decrypt that password while login the user
Posted

1 solution

1. Use encryption on the password. Secure Password Authentication Explained Simply[^] is a useful article to help you.

2. You don't decrypt on login, you encrypt the password entered by the user and then compare it to the stored value. Passwords are never stored in clear text, that would defeat the whole purpose of passwords and encryption.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900