AES-128-CBC加密模式.doc_第1页
AES-128-CBC加密模式.doc_第2页
AES-128-CBC加密模式.doc_第3页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

package com.bjy.util;import javax.crypto.Cipher;import javax.crypto.spec.IvParameterSpec;import javax.crypto.spec.SecretKeySpec;import sun.misc.BASE64Decoder;import sun.misc.BASE64Encoder;public class Encryption / 加密public static String Encrypt(String sSrc, String sKey) throws Exception if (sKey = null) System.out.print(Key为空null);return null;/ 判断Key是否为16位if (sKey.length() != 16) System.out.print(Key长度不是16位);return null; byte raw = sKey.getBytes();SecretKeySpec skeySpec = new SecretKeySpec(raw, AES);Cipher cipher = Cipher.getInstance(AES/CBC/PKCS5Padding);/ 算法/模式/补码方式IvParameterSpec iv = new IvParameterSpec(0102030405060708.getBytes();/ 使用CBC模式,需要一个向量iv,可增加加密算法的强度cipher.init(Cipher.ENCRYPT_MODE, skeySpec, iv);byte encrypted = cipher.doFinal(sSrc.getBytes();return new BASE64Encoder().encode(encrypted);/ 此处使用BASE64做转码功能,同时能起到2次加密的作用。/ 解密public static String Decrypt(String sSrc, String sKey) throws Exception try / 判断Key是否正确if (sKey = null) System.out.print(Key为空null);return null;/ 判断Key是否为16位if (sKey.length() != 16) System.out.print(Key长度不是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(0102030405060708.getBytes();cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv);byte encrypted1 = new BASE64Decoder().decodeBuffer(sSrc);/ 先用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 /* * 加密用的Key 可以用26个字母和数字组成,最好不要用保留字符,虽然不会错,至于怎么裁决,个人看情况而定 * 此处使用AES-128-CBC加密模式,key需要为16位。 */String cKey = 1234567890123456;/ 需要加密的字串String cSrc = Email : ;System.out.println(cSrc);/ 加密long lStart = System.currentTimeMillis();String enString = Encryption.Encrypt(cSrc, cKey);System.out.println(加密后的字串是: + enString);long lUseTime = System.currentTimeMillis() - lStart;System.out.println(加密耗时: + lUseTime + 毫秒);/ 解密lStart = System.currentTimeMillis();String DeString = Encryption.Decrypt(enString, cKey);System.out.println(解密后的字串是: + DeString);lUseTime = System.currentTimeMillis() - lStart;System.out.println(解密耗时: + lUseTime + 毫秒);float

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论