hashcat Forum
MD5CryptoServiceProvider - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: General Help (https://hashcat.net/forum/forum-8.html)
+--- Thread: MD5CryptoServiceProvider (/thread-3073.html)



MD5CryptoServiceProvider - billba - 01-26-2014

What hash type is created by the MD5CryptoServiceProvider in .net?


RE: MD5CryptoServiceProvider - radix - 01-26-2014

http://lmgtfy.com/?q=MD5CryptoServiceProvider


RE: MD5CryptoServiceProvider - billba - 01-26-2014

Yea, but when I try to use hashcat on a known password that was created with a call to the standard ComputeHash method of the MD5CryptoServiceProvider, which should just be an MD5 hash, it can't recover it. When I compare my string with one that I created on a website that creates MD5 hashs I get a different string. I'm new to this whole encryption thing but I'm trying to catch up.


RE: MD5CryptoServiceProvider - magnum - 01-27-2014

(01-26-2014, 01:30 AM)billba Wrote: Yea, but when I try to use hashcat on a known password that was created with a call to the standard ComputeHash method of the MD5CryptoServiceProvider, which should just be an MD5 hash, it can't recover it. When I compare my string with one that I created on a website that creates MD5 hashs I get a different string. I'm new to this whole encryption thing but I'm trying to catch up.

Perhaps the string was in UTF-16 encoding when hashed. Just guessing.


RE: MD5CryptoServiceProvider - billba - 01-29-2014

(01-27-2014, 03:39 AM)magnum Wrote:
(01-26-2014, 01:30 AM)billba Wrote: Yea, but when I try to use hashcat on a known password that was created with a call to the standard ComputeHash method of the MD5CryptoServiceProvider, which should just be an MD5 hash, it can't recover it. When I compare my string with one that I created on a website that creates MD5 hashs I get a different string. I'm new to this whole encryption thing but I'm trying to catch up.

Perhaps the string was in UTF-16 encoding when hashed. Just guessing.

That was the issue. Thanks!