1
Answer

Decrypt MD5

Ask a question
Yatish Bhavsar

Yatish Bhavsar

14y
20.4k
1


I have Encrypted a string in MD5 hash code
now I have to decrypt it please tell me

I am sending code of Encrypting

 string yourString = textBox3.Text;
            System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
            byte[] data = System.Text.Encoding.ASCII.GetBytes(yourString);
            data = x.ComputeHash(data);
            String md5Hash = System.Text.Encoding.ASCII.GetString(data);

Answers (1)