PHP7 解决 java对应的 AES/ECB/PKCS5Padding 算法

时间:2025-02-28 21:18:02

先点击链接了解一下算法吧
在线生成AES加密

java

import ;
import ;
import .BASE64Decoder;
import .BASE64Encoder;
public class aes {
    //加密方法 str为传输的值 key取商户私钥字符串的前16位
    public static String aesEncrypt(String str, String key) throws Exception {
        if (str == null || key == null) return null;
        Cipher cipher = ("AES/ECB/PKCS5Padding");
        (Cipher.ENCRYPT_MODE, new SecretKeySpec(("utf-8"), "AES"));
        byte[] bytes = (("utf-8"));
        return new BASE64Encoder().encode(bytes);
    }

    public static String aesDecrypt(String str, String key) throws Exception {
        if (str == null || key == null) return null;
        Cipher cipher = ("AES/ECB/PKCS5Padding");
        (Cipher.DECRYPT_MODE, new SecretKeySpec(("utf-8"), "AES"));
        byte[] bytes = new BASE64Decoder().decodeBuffer(str);
        bytes = (bytes);
        return new String(bytes, "utf-8");
    }
}

php

<?php
/**
 * Created by PhpStorm.
 * User: Shinelon
 * Date: 2018/7/19
 * Time: 14:22
 */

class AES
{
   public static function encrypt($data, $key) {
       $data =  openssl_encrypt($data, 'aes-128-ecb', base64_decode($key), OPENSSL_RAW_DATA);
       return base64_encode($data);
   }

    public static function decrypt($data, $key) {
        $encrypted = base64_decode($data);
        return openssl_decrypt($encrypted, 'aes-128-ecb', base64_decode($key), OPENSSL_RAW_DATA);
    }
}

AES/ECB/PKCS5Padding说明

  • AES:加密算法
  • ECB:模式
  • PKCS5Padding:补码方式