zoukankan      html  css  js  c++  java
  • AES加密算法

    package com.util;

    import javax.crypto.Cipher;
    import javax.crypto.spec.IvParameterSpec;
    import javax.crypto.spec.SecretKeySpec;

    import org.apache.commons.codec.binary.Base64;

    public class AESutil {
    //AES加密
    public static String Encrypt(String sSrc, String sKey) throws Exception {
    if (sKey == null) {
    return null;
    }
    // 判断Key是否为16位
    if (sKey.length() != 16) {
    return null;
    }
    byte[] raw = sKey.getBytes();
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");//"算法/模式/补码方式"
    IvParameterSpec iv = new IvParameterSpec(sKey.getBytes());//使用CBC模式,需要一个向量iv,可增加加密算法的强度
    cipher.init(Cipher.ENCRYPT_MODE, skeySpec, iv);
    byte[] encrypted = cipher.doFinal(sSrc.getBytes());

    return new Base64().encodeToString(encrypted);//此处使用BAES64做转码功能,同时能起到2次加密的作用。
    }

    // 解密
    public static String Decrypt(String sSrc, String sKey) throws Exception {
    try {
    // 判断Key是否正确
    if (sKey == null) {
    return null;
    }
    // 判断Key是否为16位
    if (sKey.length() != 16) {
    return null;
    }
    byte[] raw = sKey.getBytes("ASCII");
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
    IvParameterSpec iv = new IvParameterSpec(sKey
    .getBytes());
    cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv);
    byte[] encrypted1 = new Base64().decodeBase64(sSrc);//先用bAES64解密
    try {
    byte[] original = cipher.doFinal(encrypted1);
    String originalString = new String(original);
    return originalString;
    } catch (Exception e) {
    return null;
    }
    } catch (Exception ex) {
    return null;
    }
    }
    public static void main(String[] args) throws Exception {

    String sSrc="aaaaa";
    String sKey="7ahfKukxeENu4pDh";

    String s=AESutil.Encrypt(sSrc, sKey);
    System.err.println(s);
    s=AESutil.Decrypt(s, sKey);
    System.err.println(s);
    }
    }

  • 相关阅读:
    git 使用
    使用Xcode 7 beta免费真机调试iOS应用程序
    Java类更改常量后编译不生效
    Spring AOP中pointcut expression表达式解析
    awk
    sed
    Servlet 单例多线程
    iOS 运行时添加属性和方法
    Lucene5学习之使用MMSeg4j分词器
    redis
  • 原文地址:https://www.cnblogs.com/lifan12589/p/11712183.html
Copyright © 2011-2022 走看看