在VB中加密的PHP中解密

时间:2019-05-15 14:15:07

标签: php vb.net encryption tripledes

我必须解密在VB中加密的PHP中的数据。 当我解密数字时,我没有问题,但是当我解密文本时,我只得到前8个字符,然后是随机的。 这是密钥“ a1R @ f7D $” 这就是我要解密的内容:

LwEe+sQCn63m9kjtqiy67ul5R1Ng7SZPVO4YYxQvZtUZBwNTb+Ey0qCNsrczI4jN

我明白了:

{Preinsc]hn��m�ȕ�!��^߇� $!  �E&;�e^#S�)6Ui�4�

我尝试使用MCRYPT_RIJNDAEL_256和ecb,但没有一个对我有用。

function decrypt($data ){
   $encryption_key = "a1R@f7D$";
    $data = urldecode($data);
    $key = md5(utf8_encode($encryption_key), true);
    //Take first 8 bytes of $key and append them to the end of $key.
    $key .= substr($key, 0, 8);
    $data = base64_decode($data);
    $data = mcrypt_decrypt('tripledes', $key, $data, 'ecb');
    $block = mcrypt_get_block_size('tripledes', 'ecb');
    $len = strlen($data);
    $pad = ord($data[$len-1]);
    return substr($data, 0, strlen($data) - $pad);
}

这是加密此功能的功能:


Public Shared Function tryingTripleDes (ByVal value As String, ByVal key As String) As String

        Dim des As New Security.Cryptography.TripleDESCryptoServiceProvider

        des.IV des.IV = New Byte(7) {}

        Dim pdb As New Security.Cryptography.PasswordDeriveBytes(key, New Byte(-1) {})

        des.Key = pdb.CryptDeriveKey("RC2", "MD5", 128, New Byte(7) {})

        Dim ms As New IO.MemoryStream((value.Length * 2) - 1)

        Dim encStream As New Security.Cryptography.CryptoStream(ms, des.CreateEncryptor(), Security.Cryptography.CryptoStreamMode.Write)

        Dim plainBytes As Byte() = Text.Encoding.UTF8.GetBytes(value)

        encStream.Write(plainBytes, 0, plainBytes.Length)

        encStream.FlushFinalBlock()

        Dim encryptedBytes(CInt(ms.Length - 1)) As Byte

        ms.Position = 0

        ms.Read(encryptedBytes, 0, CInt(ms.Length))

        encStream.Close()

        Return Convert.ToBase64String(encryptedBytes)

    End Function

1 个答案:

答案 0 :(得分:0)

如果密文采用全零字节IV的CBC加密,通常会发生这种情况。其他模式也可能有效,但到目前为止,CBC最有可能。您的密钥和密码是正确的,否则您将得到垃圾回收-肯定不是清晰的文本。

请注意,MCRYPT_RIJNDAEL_256甚至不是AES,因此尝试使用这种方法是没有用的,您应该将MCRYPT_RIJNDAEL_128与正确大小的密钥一起使用以获得AES。

我不会使用零字节IV和不赞成使用的密码(例如3DES)来研究CBC的安全性。这不是一个好主意,尤其是对于运输安全而言。