Java MD5 Byte Array md5(byte[] bytes)

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

Description

Transform string to md5.

License

LGPL

Parameter

Parameter Description
bytes a parameter

Declaration

public static byte[] md5(byte[] bytes) throws NoSuchAlgorithmException 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Main {
    /**/*  ww w  .  j av a2s .c  o m*/
     * Transform string to md5.
     *
     * @param bytes
     * @return
     */
    public static byte[] md5(byte[] bytes) throws NoSuchAlgorithmException {
        MessageDigest md = MessageDigest.getInstance("MD5");
        return md.digest(bytes);
    }
}

Related

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