In C# how we can use SHA1 automatically?
Is SHA1 better than MD5?(We use hashing for user name and password and need speed for authentication)
|
|
|||||||||||||||||||||
|
|
Not sure what you mean by automatically, but you should really use
Will do the trick for you using SHA256 and is found at MSDN. Sidenote on the "cracking" of SHA1: Putting the cracking of SHA-1 in perspective |
|||||||||||||||||||
|
|
SHA1 is stronger than MD5 so if you have the choice it would be better to use it. Here's an example:
|
|||||||
|
|
From MSDN
For comparison you can check this |
||||
|
|
|
Both are too fast to be used, directly at least. Use Key Strengthening to "slow down" the password hashing procedure. Speed is the unfortunately the enemy to password security. How slow is slow enough? Slowing down a password hash from ~microseconds to ~hundreds of milliseconds will not adversely affect the perceived performance of your application... but will make cracking passwords literally a hundred thousand times slower. View this article for details: http://chargen.matasano.com/chargen/2007/9/7/enough-with-the-rainbow-tables-what-you-need-to-know-about-s.html
... snip ...
That said, use BCrypt. SCrypt was recently developed, but I doubt that any stable (or production ready) libraries exist for it yet. Theoretically, SCrypt claims to improve upon BCrypt. "Building your own" is not recommended, but iterating MD5 / SHA1 / SHA256 thousands of times ought to do the trick (ie: Key Strengthening). And in case you don't know about them, be sure to read up on Rainbow Tables. Basic security stuff. |
||||
|
|
|
use SHA1 or SHA2 The MD5 algorithm is problematic. http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5%28v=vs.85%29.aspx |
|||
|
|