Vb.net解密sha512哈希

时间:2013-07-05 13:08:52

标签: vb.net winforms encryption sha512

嘿伙计们,

我正在努力解决我的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

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

1 个答案:

答案 0 :(得分:5)

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

我很抱歉,但是没有办法使用彩虹表样式查找来恢复原始数据。 SO上有一个great post on the difference here