zoukankan      html  css  js  c++  java
  • AESUtils.java

    package com.vcredit.framework.utils;

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

    import org.apache.commons.codec.binary.Base64;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;

    public class AESUtils {

    private static final Logger LOGGER = LoggerFactory.getLogger(AESUtils.class);

    // 加密
    public static String Encrypt(String sSrc, String sKey) throws Exception {
    if (sKey == null) {
    LOGGER.error("AES加密失败!--密钥为null");
    return null;
    }
    // 判断Key是否为16位
    if (sKey.length() != 16) {
    LOGGER.error("AES加密失败!--密钥只能为16位字符串");
    return null;
    }
    byte[] raw = sKey.getBytes("utf-8");
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");// "算法/模式/补码方式"
    cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
    byte[] encrypted = cipher.doFinal(sSrc.getBytes("utf-8"));

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

    // 解密
    public static String Decrypt(String sSrc, String sKey) throws Exception {
    try {
    // 判断Key是否正确
    if (sKey == null) {
    LOGGER.error("AES加密失败!--密钥为null");
    return null;
    }
    // 判断Key是否为16位
    if (sKey.length() != 16) {
    LOGGER.error("AES加密失败!--密钥只能为16位字符串");
    return null;
    }
    byte[] raw = sKey.getBytes("utf-8");
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
    cipher.init(Cipher.DECRYPT_MODE, skeySpec);
    byte[] encrypted1 = new Base64().decode(sSrc);// 先用base64解密
    try {
    byte[] original = cipher.doFinal(encrypted1);
    String originalString = new String(original, "utf-8");
    return originalString;
    } catch (Exception e) {
    System.out.println(e.toString());
    return null;
    }
    } catch (Exception ex) {
    LOGGER.error("AES加密失败!", ex);
    return null;
    }
    }

    public static void main(String[] args) throws Exception {
    /*
    * 此处使用AES-128-ECB加密模式,key需要为16位。
    */
    // String cKey = "1234567890123456";
    String cKey = "activityzhounian";
    // 需要加密的字串
    String cSrc = "12313123";
    System.out.println(cSrc);
    // 加密
    String enString = AESUtils.Encrypt(cSrc, cKey);
    System.out.println("加密后的字串是:" + enString);

    // 解密
    String DeString = AESUtils.Decrypt(enString, cKey);
    System.out.println("解密后的字串是:" + DeString);
    }
    }

  • 相关阅读:
    网宿科技股份有限公司投资者关系活动记录表(2014.3.30)
    网宿科技投资者关系活动记录2016年10月31日
    [转载]20131206 网宿科技电话交流会纪要
    strlcpy和strlcat
    114 的 dns 的解析测试
    大批量数据读写
    ART——一个轻量级的web报表工具
    递归删除.svn文件
    SA常用命令
    淘女郎团队敏捷开发实践2011上半年回顾
  • 原文地址:https://www.cnblogs.com/muliu/p/6145224.html
Copyright © 2011-2022 走看看