MD5 IN JAVA
import java.security.*;
import java.math.*;
public class MD5 {
public static void main(String args[]) throws Exception {
String s = "This is a test";
MessageDigest m = MessageDigest.getInstance("MD5");
m.update(s.getBytes(), 0, s.length());
System.out.println("MD5: " + new BigInteger(1, m.digest()).toString(16));
}
}
'프로그래밍 > JAVA' 카테고리의 다른 글
STRUTS2 상수설정 (0) | 2008.03.28 |
---|---|
STRUTS2 필수 라이브러리 (0) | 2008.03.28 |
JSP 한글처리 (0) | 2008.03.24 |
JSP 캐쉬비우기 - 항상 새로운 내용 가져오는 설정 (0) | 2008.03.20 |
resin + eclipse + struts2 다운로드 (0) | 2008.01.25 |