Encryption/Decryption API in C#.NET
-
I want to store password in database as encrypted. How can I do that?. Please somebody forward me an API for Encrypt/Decrypt in C#.NET Suseel Kumar P
-
I want to store password in database as encrypted. How can I do that?. Please somebody forward me an API for Encrypt/Decrypt in C#.NET Suseel Kumar P
I got some source to enchiper and dechiper, if you want I could send you the code... It's the safest algorithm ever developed, but you'll need a really long password for it to be that safe... Niklas Ulvinge aka IDK
-
I want to store password in database as encrypted. How can I do that?. Please somebody forward me an API for Encrypt/Decrypt in C#.NET Suseel Kumar P
It's 2 methods to be more secure password in DataBase: 1) Encript with RSA256 or higher, more examples is on MSDN Primary key store in DB, other key in App. For more secure, protect Application with .NET Reactor from http://www.eziriz.com/[^] This tool not freeware, but cost not to much:) and protecting .NET .exe files Well;) 2) Other method is use only MD5 checksum and compare from DB pass, so encript entered password with MD5 and compare value with DB password what is in MD5.
-
I want to store password in database as encrypted. How can I do that?. Please somebody forward me an API for Encrypt/Decrypt in C#.NET Suseel Kumar P
The safest way to store the password is to add some salt to it (please keep the salt somewhere safe and secure too!), encrypt the password using your favorite high-strength algorithm, then store the generated hash in the database. When you have to validate a password, put the attempted password through the same routine and compare the generated hash to what stored in the database. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome