码迷,mamicode.com
首页 > 编程语言 > 详细

兔子--AES加密,解密算法

时间:2014-12-14 14:38:22      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:加密   解密   aes加密解密算法   

// AES加密
	public String encrypt_AES(String source, String key) throws Exception {

		if (key == null) {
			return null;
		}
		// 判断key是否为16位
		if (key.length() != 16) {
			return null;
		}
		byte[] raw = key.getBytes();
		SecretKey keySpec = new SecretKeySpec(raw, "AES");
		// 算法/模式/补码方式
		Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
		// 使用CBC模式,需要一个向量,可增加算法的强度
		IvParameterSpec iv = new IvParameterSpec("0102030405060708".getBytes());
		cipher.init(Cipher.ENCRYPT_MODE, keySpec, iv);
		byte[] encrypted = cipher.doFinal(source.getBytes());
		return Base64.encodeToString(encrypted, Base64.DEFAULT);

	}

	// AES解密
	public String decrypt_AES(String resource, String key) throws Exception {

		try {
			// 判断key是否正确
			if (key == null) {

				return null;

			}

			if (key.length() != 16) {
				return null;
			}

			byte[] raw = key.getBytes("ASCII");
			SecretKey keySpec = new SecretKeySpec(raw, "AES");
			// 算法/模式/补码方式
			Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
			// 使用CBC模式,需要一个向量,可增加算法的强度
			IvParameterSpec iv = new IvParameterSpec(
					"0102030405060708".getBytes());
			cipher.init(Cipher.ENCRYPT_MODE, keySpec, iv);
			byte[] encrypted1 = Base64.decode(resource, Base64.DEFAULT);
			try {

				byte[] original = cipher.doFinal(encrypted1);
				String originalString = new String(original);
				return originalString;
			} catch (Exception e) {
				return null;
			}

		} catch (Exception e) {
			return null;

		}

	}

兔子--AES加密,解密算法

标签:加密   解密   aes加密解密算法   

原文地址:http://blog.csdn.net/u013425527/article/details/41924719

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!