Isham Khan

Isham Khan

  • 992
  • 655
  • 21.5k

Password Encryption

Aug 27 2015 3:53 PM
 
I use this code for encryption of password,, Now i need the reverse of this that convert Hash to Plain Text plx help
 
byte[] data = Encoding.Unicode.GetBytes(password);
SHA1 algorithm = SHA1.Create();
byte[] hash = algorithm.ComputeHash(data);
string base64 = Convert.ToBase64String(hash);

Answers (4)