I've encrypted a string(hello) using SHA1 using below code. Please guide me to decrypt this string.
SHA1Managed sha1 = new SHA1Managed();
byte[] hash = sha1.ComputeHash(Encoding.UTF8.GetBytes("hello"));
StringBuilder sb = new StringBuilder(hash.Length * 2);
foreach( byte b in hash)
{
sb.Append(b.ToString("x2"));
}
string result = sb.ToString();
While searching in internet, I didn't find decryption using SHA1, even in MSDN. Kindly guide me.