java aes 工具类_AES加密工具类封装

import android.util.Base64;

import java.security.MessageDigest;

import java.security.spec.AlgorithmParameterSpec;

import javax.crypto.Cipher;

import javax.crypto.spec.IvParameterSpec;

import javax.crypto.spec.SecretKeySpec;

public class AES64 {

private final Cipher cipher;

private final SecretKeySpec key;

private AlgorithmParameterSpec spec;

// 密钥

public static final String SEED_16_CHARACTER = "更换成自己的密钥";

public AES64() throws Exception {

// hash password with SHA-256 and crop the output to 128-bit for key

MessageDigest digest = MessageDigest.getInstance("SHA-256");//AES-256-CBC

digest.update(SEED_16_CHARACTER.getBytes("UTF-8"));

byte[] keyBytes = new byte[32];

System.arraycopy(digest.digest(), 0, keyBytes, 0, keyBytes.length);

cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");

key = new SecretKeySpec(keyBytes, "AES");

spec = getIV();

}

public AlgorithmParameterSpec getIV() {

byte[] iv = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, };

IvParameterSpec ivParameterSpec;

ivParameterSpec = new IvParameterSpec(iv);

return ivParameterSpec;

}

/**

* 加密

* @param plainText

* @return

* @throws Exception

*/

public String encrypt(String plainText) throws Exception {

cipher.init(Cipher.ENCRYPT_MODE, key, spec);

byte[] encrypted = cipher.doFinal(plainText.trim().getBytes("UTF-8"));

String encryptedText = new String(Base64.encode(encrypted,

Base64.DEFAULT), "UTF-8");

encryptedText = encryptedText.replace("\n", "");

return encryptedText;

}

/**

* 解密

* @param cryptedText

* @return

* @throws Exception

*/

public String decrypt(String cryptedText) throws Exception {

cipher.init(Cipher.DECRYPT_MODE, key, spec);

byte[] bytes = Base64.decode(cryptedText, Base64.DEFAULT);

byte[] decrypted = cipher.doFinal(bytes);

String decryptedText = new String(decrypted, "UTF-8");

return decryptedText;

}

}

本文地址:https://blog.csdn.net/weixin_42345592/article/details/107385335

希望与广大网友互动??

点此进行留言吧!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值