1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | private static String md5hash(String e) { String result = "null" ; try { MessageDigest md = MessageDigest.getInstance( "MD5" ); byte [] hash = md.digest(e.getBytes( "UTF-8" )); StringBuilder sb = new StringBuilder( 2 * hash.length); for ( byte b : hash) { sb.append(String.format( "%02x" , b & 0xff )); } result = sb.toString(); } catch (UnsupportedEncodingException | NoSuchAlgorithmException ex) { Logger.getLogger(HelloWorld. class .getName()).log(Level.SEVERE, null , ex); } return result; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.logging.Level; import java.util.logging.Logger; class HelloWorld { private static String md5hash(String e) { String result = "null" ; try { MessageDigest md = MessageDigest.getInstance( "MD5" ); byte [] hash = md.digest(e.getBytes( "UTF-8" )); StringBuilder sb = new StringBuilder( 2 * hash.length); for ( byte b : hash) { sb.append(String.format( "%02x" , b & 0xff )); } result = sb.toString(); } catch (UnsupportedEncodingException | NoSuchAlgorithmException ex) { Logger.getLogger(HelloWorld. class .getName()).log(Level.SEVERE, null , ex); } return result; } public static void main(String[] args) { String text = "myplaintext" ; String md5_hash = md5hash(text); System.out.println( "md5 hash result : " +md5_hash+ "\n" ); } } |
1 | md5 hash result : 3c5d21f4241582748caf9d6f6507167e |