Click here to Skip to main content
15,890,557 members

Comments by I'm Chris (Top 1 by date)

I'm Chris 3-May-11 2:38am View    
Deleted
Do not use MD5 or SHA1 to hash passwords. This has been proven to be too weak given today's processing power (GPU, cloud computing...). Instead, people have been using for a while now what they call "slow" algorithms to defeat reverse hashing - namely BCrypt and Scrypt. You'll easily find good explaination and .NET implementations on the net.

Regards
Chris