apache commons codec 을 이용한 Base64 암호화 복호화 그리고 md5 등의 다이제스트 + jquery Base64
라이브러리 2014. 10. 17. 10:00728x90
반응형
1. 암/복호화 (two way)
[Base64]
public String base64_en(String src){
return org.apache.commons.codec.binary.Base64.encodeBase64String(src.getBytes());
}
public String base64_de(String src){
return new String(org.apache.commons.codec.binary.Base64.decodeBase64(src.getBytes()));
}
2. 다이제스트 (one way)
[md5]
public String md5(String src){
return org.apache.commons.codec.digest.DigestUtils.md5(src);
}
참고 http://commons.apache.org/proper/commons-codec/userguide.html
[Base64 in jquery]
$.base64.encode(password);
$.base64.decode(password);
728x90
반응형
'라이브러리' 카테고리의 다른 글
apache commons-net 을 이용한 서브넷 아이피 골라내기 (0) | 2014.10.17 |
---|---|
자바스크립트 날짜 형식 moment js (0) | 2014.09.12 |