I am using this to convert text to hash.
How should I convert the hash text to its original. It is needed to display the text.
C#:
private string HashPassword(string sText)
{
Byte[] data = System.Text.Encoding.UTF8.GetBytes(sText);
Byte[] hash = new System.Security.Cryptography.SHA256CryptoServiceProvider().
ComputeHash(data);
return Convert.ToBase64String(hash);
}