AES-128-CBC加解密openssl

AES-128-CBC加解密openssl,第1张

AES-128-CBC加解密/openssl

针对php的AES-128-CBC加解密代码,需要使用JAVA解密。

1. php加解密

//加密
$result = openssl_encrypt($data, "AES-128-CBC", $aesKey, 0, $aesIv);
//解密
$result = openssl_decrypt($data, "AES-128-CBC", $aesKey, 0, $aesIv);

需要注意$options变量的不同。
加密过程中的$options=1, 意味着使用OPENSSL_RAW_DATA。
解密过程中的$options=1, 意味着使用OPENSSL_RAW_DATA。$options=0,意味着使用base64_encoded文本。此外,$aesKey和$aesIv要求16位长度,超过限制长度,截取前16位。

2. java解密

    public String aesDecrypt(String data, String aesKey, String aesIv) throws Exception {
        Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
        cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(aesKey.substring(0, 16).getBytes(), ALGORITHM),
                new IvParameterSpec(aesIv.getBytes()));
        byte[] plainText = base64.getDecoder().decode(base64.getDecoder().decode(data));
        byte[] plainBytes = cipher.doFinal(plainText);
        return new String(plainBytes);
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5707040.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存