i want to save password s in database encrypted in md5 How to convert text into md5 with c# and convert it back in text?
Thanks
|
i want to save password s in database encrypted in md5 How to convert text into md5 with c# and convert it back in text? Thanks |
|||||||
|
|
Hashing is not encryption - it is not reversible. |
|||||||
|
|
You shouldn't need to convert back to the original password. If you want to check the user has entered the correct password you should hash their attempt and compare that hashed value to the hashed value in the database. At no point will the plaintext password be compared to anything. |
|||
|
|
You shouldn't use MD5 for hashing passwords, it is very insecure. What you should do is use a user specific salt and maybe 3 different hashing algorithms that take at least 1 second to run. It may seem like 1 second is a long time but that is the point. You user only has to log into the site once and a cracker will have to spend one minute trying just 60 different passwords. Personally I use a site specific salt and user specific salts. That way if my database were compromised they would still be missing a some of the pieces to crack the passwords. |
|||||||||
|
|
Saving a hash of a password is not saving a password - you can't get a password back out of it. One way only. Otherwise it would be called encryption. You are saving something which you can compare against a hash of another password typed in later. If the two hashes are the same, the password is the same (well, incredibly unlikely to be anything else - exclude hash collisions as being less likely than Gorillas for good hashing algorithms using a big enough space) You can look at this discussion on salting vs multiple hashes over at Crypto SE. |
|||
|
|