Here you can find the source of md5(String source)
public static String md5(String source)
//package com.java2s; //License from project: Apache License import java.security.MessageDigest; public class Main { public static String md5(String source) { StringBuffer sb = new StringBuffer(32); try {//from www. j a va2s . c o m MessageDigest md = MessageDigest.getInstance("MD5"); byte[] array = md.digest(source.getBytes("utf-8")); for (int i = 0; i < array.length; i++) { sb.append(Integer.toHexString((array[i] & 0xFF) | 0x100).toUpperCase().substring(1, 3)); } } catch (Exception e) { e.printStackTrace(); return null; } return sb.toString(); } }