Java MD5 Byte Array md5(byte[] input)

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

Description

md

License

Apache License

Declaration

public static byte[] md5(byte[] input) 

Method Source Code

//package com.java2s;
/**/*from  w ww  . j ava2s .  c o  m*/
 * Copyright (c) 2005-2012 springside.org.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */

import java.io.IOException;
import java.io.InputStream;
import java.security.GeneralSecurityException;
import java.security.MessageDigest;

public class Main {
    private static final String MD5 = "MD5";

    public static byte[] md5(byte[] input) {
        return digest(input, MD5, null, 1);
    }

    public static byte[] md5(InputStream input) throws IOException {
        return digest(input, MD5);
    }

    private static byte[] digest(byte[] input, String algorithm, byte[] salt, int iterations) {
        try {
            MessageDigest digest = MessageDigest.getInstance(algorithm);

            if (salt != null) {
                digest.update(salt);
            }

            byte[] result = digest.digest(input);

            for (int i = 1; i < iterations; i++) {
                digest.reset();
                result = digest.digest(result);
            }
            return result;
        } catch (GeneralSecurityException e) {
            throw new RuntimeException(e);
        }
    }

    private static byte[] digest(InputStream input, String algorithm) throws IOException {
        try {
            MessageDigest messageDigest = MessageDigest.getInstance(algorithm);
            int bufferLength = 8 * 1024;
            byte[] buffer = new byte[bufferLength];
            int read = input.read(buffer, 0, bufferLength);

            while (read > -1) {
                messageDigest.update(buffer, 0, read);
                read = input.read(buffer, 0, bufferLength);
            }

            return messageDigest.digest();
        } catch (GeneralSecurityException e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. md5(byte[] data)
  2. md5(byte[] data)
  3. md5(byte[] input)
  4. md5(byte[] input)
  5. md5(byte[] input)
  6. md5(byte[] md5)
  7. md5(byte[] param)
  8. md5(byte[] source)
  9. MD5(byte[] source)