Decrypt or Reverse a Hash (SHA-1, Digest-MD5, etc.)Back
I have a client who is requesting for me to reverse the SHA-1 hex value to the original password of text that was used. Now it’s my understanding that SHA-1 is not reversible, but, I’ll ask the question anyway. Is there any undocumented function that I can use to decrypt SHA-1 using the Chilkat Crypt ActiveX or .NET versions? Example code used to encrypt original text: crypt.HashAlgorithm = "SHA-1" crypt.EncodingMode = "hex" encryptedStr = crypt.HashStringENC(s)
Answer: |