Here you can find the source of md5(String input)
Parameter | Description |
---|---|
input | a parameter |
public static String md5(String input)
//package com.java2s; //License from project: Apache License import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Main { /**// www.j a va 2 s.c o m * Return a string of 32 lower case hex characters. * * @param input * @return a string of 32 hex characters */ public static String md5(String input) { String hexHash = null; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(input.getBytes()); byte[] output = md.digest(); hexHash = bytesToLowerCaseHex(output); } catch (NoSuchAlgorithmException nsae) { throw new RuntimeException(nsae); } return hexHash; } private static String bytesToLowerCaseHex(byte[] data) { StringBuffer buf = new StringBuffer(); for (int i = 0; i < data.length; i++) { int halfbyte = (data[i] >>> 4) & 0x0F; int two_halfs = 0; do { if ((0 <= halfbyte) && (halfbyte <= 9)) buf.append((char) ('0' + halfbyte)); else buf.append((char) ('a' + (halfbyte - 10))); halfbyte = data[i] & 0x0F; } while (two_halfs++ < 1); } return buf.toString(); } }