嘿伙计们,
我正在努力解密哈希我的sha512
加密方式。我正在寻找一种最终解密它的方法。
顺便说一句,这就是我进行加密的方式:
Dim uEncode As New UTF8Encoding()
Dim bytClearString() As Byte = uEncode.GetBytes("to encrypt")
Dim sha As New _
System.Security.Cryptography.SHA512Managed
Dim WordEncrypt As String = ""
Dim hash() As Byte = sha.ComputeHash(bytClearString)
For Each b As Byte In hash
WordEncrypt &= b.ToString("x2")
Next
我现在需要的是知道如何解密它。