AES加解密工具类

package com.bonawise.trash.upload.fxx.util;

import javax.crypto.*;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.security.Security;

public class EncrypAES {
//KeyGenerator 提供对称密钥生成器的功能,支持各种算法
private static KeyGenerator keygen;

//SecretKey 负责保存对称密钥
private static SecretKey deskey;
//Cipher负责完成加密或解密工作
private static Cipher c;
//该字节数组负责保存加密的结果
private static byte[] cipherByte;

public EncrypAES(String secRan) throws NoSuchAlgorithmException, NoSuchPaddingException, UnsupportedEncodingException {
    Security.addProvider(new com.sun.crypto.provider.SunJCE());
    //实例化支持DES算法的密钥生成器(算法名称命名需按规定,否则抛出异常)
    String charset = "UTF-8";
    SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
    secureRandom.setSeed(secRan.getBytes(charset));
    keygen = KeyGenerator.getInstance("AES");
    keygen.init(128, secureRandom);

    //生成密钥
    deskey = keygen.generateKey();
    //生成Cipher对象,指定其支持的DES算法
    c = Cipher.getInstance("AES");
}

/**
 * 对字符串加密
 */
public static byte[] Encrytor(String str) throws InvalidKeyException,
        IllegalBlockSizeException, BadPaddingException, UnsupportedEncodingException {
    // 根据密钥,对Cipher对象进行初始化,ENCRYPT_MODE表示加密模式
    c.init(Cipher.ENCRYPT_MODE, deskey);
    byte[] src = str.getBytes("utf-8");

// byte[] src = str.getBytes();
// 加密,结果保存进cipherByte
cipherByte = c.doFinal(src);
return cipherByte;
}

/**
 * 对字符串解密
 */
public static byte[] Decryptor(byte[] buff) throws InvalidKeyException,
        IllegalBlockSizeException, BadPaddingException {
    // 根据密钥,对Cipher对象进行初始化,DECRYPT_MODE表示加密模式
    c.init(Cipher.DECRYPT_MODE, deskey);
    cipherByte = c.doFinal(buff);
    return cipherByte;
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值