Here you can find the source of MD5(String sourceStr)
Parameter | Description |
---|---|
T | a parameter |
sourceStr | a parameter |
args | a parameter |
Parameter | Description |
---|---|
InvocationTargetException | an exception |
IllegalArgumentException | an exception |
IllegalAccessException | an exception |
private static String MD5(String sourceStr)
//package com.java2s; //License from project: Apache License import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Main { /**//w ww . ja va 2 s . c o m * * @param <T> * @param sourceStr * @param args * @return * @throws InvocationTargetException * @throws IllegalArgumentException * @throws IllegalAccessException */ private static String MD5(String sourceStr) { String result = ""; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(sourceStr.getBytes()); byte b[] = md.digest(); int i; StringBuffer buf = new StringBuffer(""); for (int offset = 0; offset < b.length; offset++) { i = b[offset]; if (i < 0) i += 256; if (i < 16) buf.append("0"); buf.append(Integer.toHexString(i)); } result = buf.toString(); // System.out.println("MD5(" + sourceStr + ",32) = " + result); // System.out.println("MD5(" + sourceStr + ",16) = " + // buf.toString().substring(8, 24)); } catch (NoSuchAlgorithmException e) { // System.out.println(e); } return result; } }