`
bestxiaok
  • 浏览: 443870 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

AES加密解密

阅读更多
由于刚才的方法不好使,算出来的东西不知道是什么进制,整迷糊了,就用如下的算法。
    /**
     * 加密
     * 
     * @param content 需要加密的内容
     * @param password  加密密码
     * @return
     */
    public static byte[] encrypt(String content, String password) {
            try {           
                    KeyGenerator kgen = KeyGenerator.getInstance("AES");
                    kgen.init(128, new SecureRandom(password.getBytes()));
                    SecretKey secretKey = kgen.generateKey();
                    byte[] enCodeFormat = secretKey.getEncoded();
                    SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
                    Cipher cipher = Cipher.getInstance("AES");// 创建密码器
                    byte[] byteContent = content.getBytes("utf-8");
                    cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化
                    byte[] result = cipher.doFinal(byteContent);
                    return result; // 加密
            } catch (NoSuchAlgorithmException e) {
                    e.printStackTrace();
            } catch (NoSuchPaddingException e) {
                    e.printStackTrace();
            } catch (InvalidKeyException e) {
                    e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                    e.printStackTrace();
            } catch (BadPaddingException e) {
                    e.printStackTrace();
            }
            return null;
    }
    /**解密
     * @param content  待解密内容
     * @param password 解密密钥
     * @return
     */
    public static byte[] decrypt(byte[] content, String password) {
            try {
                     KeyGenerator kgen = KeyGenerator.getInstance("AES");
                     kgen.init(128, new SecureRandom(password.getBytes()));
                     SecretKey secretKey = kgen.generateKey();
                     byte[] enCodeFormat = secretKey.getEncoded();
                     SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");            
                     Cipher cipher = Cipher.getInstance("AES");// 创建密码器
                    cipher.init(Cipher.DECRYPT_MODE, key);// 初始化
                    byte[] result = cipher.doFinal(content);
                    return result; // 加密
            } catch (NoSuchAlgorithmException e) {
                    e.printStackTrace();
            } catch (NoSuchPaddingException e) {
                    e.printStackTrace();
            } catch (InvalidKeyException e) {
                    e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                    e.printStackTrace();
            } catch (BadPaddingException e) {
                    e.printStackTrace();
            }
            return null;
    }
    /**将二进制转换成16进制
     * @param buf
     * @return
     */
    public static String parseByte2HexStr(byte buf[]) {
            StringBuffer sb = new StringBuffer();
            for (int i = 0; i < buf.length; i++) {
                    String hex = Integer.toHexString(buf[i] & 0xFF);
                    if (hex.length() == 1) {
                            hex = '0' + hex;
                    }
                    sb.append(hex.toUpperCase());
            }
            return sb.toString();
    }
    /**将16进制转换为二进制
     * @param hexStr
     * @return
     */
    public static byte[] parseHexStr2Byte(String hexStr) {
            if (hexStr.length() < 1)
                    return null;
            byte[] result = new byte[hexStr.length()/2];
            for (int i = 0;i< hexStr.length()/2; i++) {
                    int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16);
                    int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);
                    result[i] = (byte) (high * 16 + low);
            }
            return result;
    }
    public static void main(String[] args) throws UnsupportedEncodingException {
//    	   String content = "test";
//           String password = "12345678123456";
//           //加密
//           System.out.println("加密前:" + content);
//           byte[] encryptResult = encrypt(content, password);
////           System.out.println(new String(encryptResult,"UTF8"));
//           //解密
//           byte[] decryptResult = decrypt(encryptResult,password);
//           System.out.println("解密后:" + new String(decryptResult));
           
           String content = "test";
           String password = "12345676789";
           //加密
           System.out.println("加密前:" + content);
           byte[] encryptResult = encrypt(content, password);
           String encryptResultStr = parseByte2HexStr(encryptResult);
           System.out.println("加密后:" + encryptResultStr);
           //解密
           byte[] decryptFrom = parseHexStr2Byte(encryptResultStr);
           byte[] decryptResult = decrypt(decryptFrom,password);
           System.out.println("解密后:" + new String(decryptResult));
	}
    
分享到:
评论
5 楼 bestxiaok 2012-01-16  
sheep3600 写道
bestxiaok 写道
sheep3600 写道
对了,另外建议你把进制转换封装进去,用起来方便,string进,string出。

谢谢了,我都报好了,发现个问题,在加密和解密的时候,CPU利用率比较高。。。


我觉得这个正常吧,一般这种东西都比较累CPU。

那就放在前台吧,这个可能还比较好搞点。
4 楼 sheep3600 2012-01-12  
bestxiaok 写道
sheep3600 写道
对了,另外建议你把进制转换封装进去,用起来方便,string进,string出。

谢谢了,我都报好了,发现个问题,在加密和解密的时候,CPU利用率比较高。。。


我觉得这个正常吧,一般这种东西都比较累CPU。
3 楼 bestxiaok 2012-01-10  
sheep3600 写道
对了,另外建议你把进制转换封装进去,用起来方便,string进,string出。

谢谢了,我都报好了,发现个问题,在加密和解密的时候,CPU利用率比较高。。。
2 楼 sheep3600 2012-01-09  
对了,另外建议你把进制转换封装进去,用起来方便,string进,string出。
1 楼 sheep3600 2012-01-09  
看你回复我,我就来转转。
看到这个AES加密,顺便提个醒,这个只适合java之间的加密解密,跨语言就搞不通了

KeyGenerator kgen = KeyGenerator.getInstance("AES");  
kgen.init(128, new SecureRandom(password.getBytes()));  
SecretKey secretKey = kgen.generateKey();  
byte[] enCodeFormat = secretKey.getEncoded();  

这一部分闹的,而且
Cipher cipher = Cipher.getInstance("AES");// 创建密码器


这一部分需要再详细的指明一下
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding")


呵呵。
发表评论

文章已被作者锁定,不允许评论。

相关推荐

Global site tag (gtag.js) - Google Analytics