how to implement md5 algorithm in c#
-
hi
-
hi
hiiiii
-
hi
-
hi
-
hi
If this is a new project,m then I would recommend that you don't - MD5 is officially "broken" and should not be used for new designs - SHA is preferred. MSDN has plenty of information on how to use SHA and MD5 hashing: http://msdn.microsoft.com/en-us/library/system.security.cryptography.sha512(v=vs.110).aspx[^] http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5(v=vs.110).aspx[^]
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952) Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
-
If this is a new project,m then I would recommend that you don't - MD5 is officially "broken" and should not be used for new designs - SHA is preferred. MSDN has plenty of information on how to use SHA and MD5 hashing: http://msdn.microsoft.com/en-us/library/system.security.cryptography.sha512(v=vs.110).aspx[^] http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5(v=vs.110).aspx[^]
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952) Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
Quote:
MD5 is officially "broken" and should not be used for new designs - SHA is preferred
Thanks for this information. I am not aware about that. You deserve Up vote.