Get MD5 Hash In A Few Lines Of Java
Join the DZone community and get the full member experience.
Join For Free
1 import java.security.*;
2 import java.math.*;
3
4 public class MD5 {
5 public static void main(String args[]) throws Exception{
6 String s="This is a test";
7 MessageDigest m=MessageDigest.getInstance("MD5");
8 m.update(s.getBytes(),0,s.length());
9 System.out.println("MD5: "+new BigInteger(1,m.digest()).toString(16));
10 }
11 }
Java (programming language)
Opinions expressed by DZone contributors are their own.
Comments