加密解密 - 用php实现java中的aes加密
PHP中文网
PHP中文网 2017-04-10 17:18:47
0
1
393

java中的aes加密算法如下:

    public static byte[] decrypt(byte[] data, byte[] key)
            throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
        Security.addProvider(new BouncyCastleProvider());
        Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding");
        cipher.init(2, new SecretKeySpec(key, "AES"));
        return cipher.doFinal(data);
    }

    public static byte[] encrypt(byte[] data, byte[] key)
            throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
        Security.addProvider(new BouncyCastleProvider());
        Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding");
        cipher.init(1, new SecretKeySpec(key, "AES"));
        return cipher.doFinal(data);
    }

请问如何用php来实现
我测试了很多网上的例子都不能得到相同的密文

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(1)
小葫芦

可能是编码的问题,java默认是GBK编码;
php编码类型与页面的保存编码有关。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template