Как декодировать строку MD5
Я использую этот код, чтобы сделать зашифрованный пароль.Я хочу декодировать сгенерированную строку до ее оригинала.
public string CreateHash(string password, string salt) { // Get a byte array containing the combined password + salt. string authDetails = password + salt; byte[] authBytes = System.Text.Encoding.ASCII.GetBytes(authDetails); // Use MD5 to compute the hash of the byte array, and return the hash as // a Base64-encoded string. var md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] hashedBytes = md5.ComputeHash(authBytes); string hash = Convert.ToBase64String(hashedBytes); return hash; }
[no name]
MD5-это хэш, поэтому вы не можете получить оригинал обратно.