我正在使用AES ECB 256填充-加密发送数据,但是解密我无法实现

时间:2019-05-24 09:42:37

标签: php aes

我正在将数据发送到API,并且它们使用Java函数,我在PHP中复制了加密,但无法解密响应数据。

我尝试了各种加密,但是它们严格使用了这种加密解密,我无法更改加密,因此我必须遵循。

加密功能正常工作:

function encrypt($input, $key) {
        $size = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);
        $input = pkcs5_pad($input, $size);
        $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_ECB, '');
        $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
        mcrypt_generic_init($td, $key, $iv);
        $data = mcrypt_generic($td, $input);
        mcrypt_generic_deinit($td);
        mcrypt_module_close($td);
        $data = base64_encode($data);
        return $data;
    }

    function pkcs5_pad($text, $blocksize) {
        $pad = $blocksize - (strlen($text) % $blocksize);
        return $text . str_repeat(chr($pad), $pad);
    }

我尝试过的解密功能:

function decrypt($sStr, $sKey) {
        $decrypted = mcrypt_decrypt(
                MCRYPT_RIJNDAEL_128, $sKey, base64_decode($sStr), MCRYPT_MODE_ECB
        );
        $dec_s = strlen($decrypted);
        $padding = ord($decrypted[$dec_s - 1]);
        $decrypted = substr($decrypted, 0, -$padding);
        return $decrypted;
    }

作为输出,我得到了???这是错误的加密。

请勿重复搜索,因为我已经搜索了3个多小时,然后我发布了问题。

1 个答案:

答案 0 :(得分:0)

function decrypt($sStr, $sKey) {
        $decrypted = mcrypt_decrypt(
                MCRYPT_RIJNDAEL_128, $sKey, base64_decode($sStr), MCRYPT_MODE_ECB
        );
        $dec_s = strlen($decrypted);
        $padding = ord($decrypted[$dec_s - 1]);
        $decrypted = substr($decrypted, 0, -$padding);
        $decrypted = base64_encode($decrypted );    //This line Added.
        return $decrypted;
    }

我得到的是字节格式,没有将数据转换为base64_encode,现在可以正常工作了。