Encryption and Decryption SHA1 hash password in asp.net c#

Encryption and Decryption SHA1 hash string using ASP.Net C#

Hello everyone, I am going to share the code sample for decryption SHA1 hash password using ASP.Net C#. 

The code details as given blow.

public class HashSHA1Decryption
{
        /// <summary>
        /// The SHA1 hash string is impossible to transform back to its original string.
        /// </summary>
        public static string HashSHA1Decryption(string value)
        {
            var shaSHA1 = System.Security.Cryptography.SHA1.Create();
            var inputEncodingBytes = Encoding.ASCII.GetBytes(value);
            var hashString = shaSHA1.ComputeHash(inputEncodingBytes);

            var stringBuilder = new StringBuilder();
            for (var x = 0; x < hashString.Length; x++)
            {
                stringBuilder.Append(hashString[x].ToString("X2"));
            }
            return stringBuilder.ToString();
        }
  }

For more detail you can visit below links
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^