博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Android Pro] AES加密
阅读量:5915 次
发布时间:2019-06-19

本文共 2567 字,大约阅读时间需要 8 分钟。

reference to :

package com.secufity.aes;import java.util.UUID;import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import com.secufity.db.Base64; /** * * @author wfung_kwok * */ public class AES { static String e = "9238513401340235"; // 加密 public static String Encrypt(String src, String key) throws Exception { if (key == null) { System.out.print("Key为空null"); return null; } // 判断Key是否为16位 if (key.length() != 16) { System.out.print("Key长度不是16位"); return null; } byte[] raw = key.getBytes(); SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");// "算法/模式/补码方式"0102030405060708 IvParameterSpec iv = new IvParameterSpec(e.getBytes());// 使用CBC模式,需要一个向量iv,可增加加密算法的强度 cipher.init(Cipher.ENCRYPT_MODE, skeySpec, iv); byte[] encrypted = cipher.doFinal(src.getBytes()); return Base64.encodeBytes(encrypted); // 此处使用BASE64做转码功能,同时能起到2次加密的作用。 } // 解密 public static String Decrypt(String src, String key) throws Exception { try { // 判断Key是否正确 if (key == null) { System.out.print("Key为空null"); return null; } // 判断Key是否为16位 if (key.length() != 16) { System.out.print("Key长度不是16位"); return null; } byte[] raw = key.getBytes("ASCII"); SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); IvParameterSpec iv = new IvParameterSpec(e.getBytes()); cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv); byte[] encrypted1 = Base64.decode(src);// 先用base64解密 try { byte[] original = cipher.doFinal(encrypted1); String originalString = new String(original); return originalString; } catch (Exception e) { System.out.println(e.toString()); return null; } } catch (Exception ex) { System.out.println(ex.toString()); return null; } } public static void main(String[] args) throws Exception { String key = UUID.randomUUID().toString().substring(0, 16); String src = "Email : wfung_kwok@xxx.com"; System.out.println(src); // 加密 long start = System.currentTimeMillis(); String enString = AES.Encrypt(src, key); System.out.println("加密后的字串是:" + enString); long useTime = System.currentTimeMillis() - start; System.out.println("加密耗时:" + useTime + "毫秒"); // 解密 start = System.currentTimeMillis(); String DeString = AES.Decrypt(enString, key); System.out.println("解密后的字串是:" + DeString); useTime = System.currentTimeMillis() - start; System.out.println("解密耗时:" + useTime + "毫秒"); } }

Console:

Email : wfung_kwok@xxx.com加密后的字串是:Gkl3xEIHndI1W8CN9fKbvEM3Fzo9KJSfVvQPWRkH0WI=加密耗时:234毫秒解密后的字串是:Email : wfung_kwok@xxx.com解密耗时:0毫秒

 

转载地址:http://jggpx.baihongyu.com/

你可能感兴趣的文章
PPP的chap认证实验
查看>>
yum命令全集详解
查看>>
基于故障转移群集的高可用虚拟机解决方案
查看>>
对中文输入法的看法
查看>>
MacOS中在Finder中打开终端terminal工具——Go2Shell
查看>>
我的友情链接
查看>>
八款开源 Android 游戏引擎 (巨好的资源)
查看>>
glib 移植笔记
查看>>
我的友情链接
查看>>
Centos yum使用
查看>>
操作按鈕樣式改變(yii環境)
查看>>
webbench安装使用
查看>>
Skype坑爹报错:“旧版本无法删除,请联络您的技术支持小组 ”的解决办法
查看>>
『水晶报表』使用 水晶报表 实现打印
查看>>
linux 常用命令总结
查看>>
表空间管理
查看>>
TensorFlow 简介
查看>>
oracle11g 高可用性DataGuard配置
查看>>
SVN 缺少更新报告的关闭标签
查看>>
Mysql查询连续数据
查看>>