Here you can find the source of md5(String strs)
public static String md5(String strs)
//package com.java2s; //License from project: Apache License import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Main { public static String md5(String strs) { byte[] source = strs.getBytes(); char str[] = new char[16 * 2]; char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; MessageDigest md;/* w w w . j a va 2s .c o m*/ try { md = MessageDigest.getInstance("MD5"); md.update(source); byte tmp[] = md.digest(); int k = 0; for (int i = 0; i < 16; i++) { byte byte0 = tmp[i]; str[k++] = hexDigits[byte0 >>> 4 & 0xf]; str[k++] = hexDigits[byte0 & 0xf]; } } catch (NoSuchAlgorithmException e) { } return new String(str); } }