`
siser344
  • 浏览: 21753 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

使用commons-codec包加密字符串(MD5,SHA1,BASE64)

阅读更多

commons-codec包可以从apache下载,最新版是1.3

不可逆算法

1.MD5

<!---->String str = "abc";
DigestUtils.md5Hex(str);

附.net生成MD5的方法,生成内容跟java一致:

<!---->String str = "abc";
FormsAuthentication.HashPasswordForStoringInConfigFile(str, 
"MD5");

 

2.SHA1

<!---->String str = "abc";
DigestUtils.shaHex(str);

附.net生成SHA1的方式,生成内容跟java一致:

<!---->String str = "abc";
FormsAuthentication.HashPasswordForStoringInConfigFile(str, 
"SHA1");

 

可逆算法

常规加密解密算法: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));
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics