public class Md5Utils
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private static int |
SIXTEEN_K |
Constructor and Description |
---|
Md5Utils() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
computeMD5Hash(byte[] input)
Computes the MD5 hash of the given data and returns it as an array of
bytes.
|
static byte[] |
computeMD5Hash(java.io.File file)
Computes the MD5 of the given file.
|
static byte[] |
computeMD5Hash(java.io.InputStream is)
Computes the MD5 hash of the data in the given input stream and returns
it as an array of bytes.
|
static java.lang.String |
md5AsBase64(byte[] input)
Returns the MD5 in base64 for the given byte array.
|
static java.lang.String |
md5AsBase64(java.io.File file)
Returns the MD5 in base64 for the given file.
|
static java.lang.String |
md5AsBase64(java.io.InputStream is)
Returns the MD5 in base64 for the data from the given input stream.
|
private static final int SIXTEEN_K
public static byte[] computeMD5Hash(java.io.InputStream is) throws java.io.IOException
java.io.IOException
public static java.lang.String md5AsBase64(java.io.InputStream is) throws java.io.IOException
java.io.IOException
public static byte[] computeMD5Hash(byte[] input)
public static java.lang.String md5AsBase64(byte[] input)
public static byte[] computeMD5Hash(java.io.File file) throws java.io.FileNotFoundException, java.io.IOException
java.io.FileNotFoundException
java.io.IOException
public static java.lang.String md5AsBase64(java.io.File file) throws java.io.FileNotFoundException, java.io.IOException
java.io.FileNotFoundException
java.io.IOException