Possible Duplicate:
Is it possible to decrypt md5 hashes?
i have md5 checksum in string form.
example:
string md5 = "83bb108c0c4d94fab1a6748ca1ddfba6";
i want to get the byte[] array back from this md5. i mean reverse MD5CryptoServiceProvider.ComputHash() method . is this possible?
I seem to understand that you want to obtain the original data from a given hash. That’s not possible since a MD5 Hash inherently loses the original information in the digesting process.
You might want to check the Hash function and the MD5 wikipedia entries in order to better understand what a hash function is.