Java MD5 Byte Array MD5(byte[] bytes)

Here you can find the source of MD5(byte[] bytes)

Description

MD

License

Open Source License

Declaration

public static byte[] MD5(byte[] bytes) 

Method Source Code


//package com.java2s;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Main {

    public static byte[] MD5(byte[] bytes) {
        return digest("MD5", bytes);
    }/*from   ww w  .  j av a2  s  .  c  om*/

    private static byte[] digest(String type, byte[] bytes) {
        try {
            MessageDigest dist = MessageDigest.getInstance(type);
            return dist.digest(bytes);
        } catch (NoSuchAlgorithmException e) {
            throw new IllegalArgumentException("Cannot find digest:" + type, e);
        }
    }
}

Related

  1. md5(byte[] buf)
  2. md5(byte[] buffer, int length)
  3. md5(byte[] bytes)
  4. md5(byte[] bytes)
  5. md5(byte[] bytes)
  6. md5(byte[] bytes)
  7. md5(byte[] bytes)
  8. md5(byte[] data)
  9. md5(byte[] data)