码迷,mamicode.com
首页 > 其他好文 > 详细

备忘,commons-codec中可能用到的一些加密字符串的方法

时间:2016-04-15 00:42:25      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:

commons-codec中提供了一些加密解密字符串的方法,我们可以直接使用

1.MD5加密:

String source = "source"

DigestUtils.md5Hex(source);

 

2.SHA1加密:

String str = "abc";

DigestUtils.shaHex(str);

 

3.BASE64加密/解密

//加密

String str= "abc"; // abc为要加密的字符串

byte[] b = Base64.encodeBase64(str.getBytes(), true);

System.out.println(new String(b));

//解密

String str = "YWJj"; // YWJj为要解密的字符串

byte[] b = Base64.decodeBase64(str.getBytes());

System.out.println(new String(b));

 

 

 

备忘,commons-codec中可能用到的一些加密字符串的方法

标签:

原文地址:http://www.cnblogs.com/jiaoyiping/p/5393511.html

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