1

嘿伙计们,

我正在努力解密哈希我的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

我现在需要的是知道如何解密它。

4

1 回答 1

5

SHA512 不是加密算法,而是散列算法。这意味着进入其中的数据无法从生成的哈希中恢复。

很抱歉,没有办法使用彩虹表样式查找来取回原始数据。关于 SO的区别有一篇很棒的文章。

于 2013-07-05T13:23:56.233 回答