public abstract class DigestUtils
extends java.lang.Object
Mainly for internal use within the framework; consider Apache Commons Codec for a more comprehensive suite of digest utilities.
Constructor and Description |
---|
DigestUtils() |
Modifier and Type | Method and Description |
---|---|
static java.lang.StringBuilder |
appendMd5DigestAsHex(byte[] bytes,
java.lang.StringBuilder builder)
Append a hexadecimal string representation of the MD5 digest of the given
bytes to the given
StringBuilder . |
static java.lang.StringBuilder |
appendMd5DigestAsHex(java.io.InputStream inputStream,
java.lang.StringBuilder builder)
Append a hexadecimal string representation of the MD5 digest of the given
inputStream to the given
StringBuilder . |
static byte[] |
md5Digest(byte[] bytes)
Calculate the MD5 digest of the given bytes.
|
static byte[] |
md5Digest(java.io.InputStream inputStream)
Calculate the MD5 digest of the given stream.
|
static java.lang.String |
md5DigestAsHex(byte[] bytes)
Return a hexadecimal string representation of the MD5 digest of the given bytes.
|
static java.lang.String |
md5DigestAsHex(java.io.InputStream inputStream)
Return a hexadecimal string representation of the MD5 digest of the given stream.
|
public static byte[] md5Digest(byte[] bytes)
bytes
- the bytes to calculate the digest overpublic static byte[] md5Digest(java.io.InputStream inputStream) throws java.io.IOException
inputStream
- the InputStream to calculate the digest overjava.io.IOException
public static java.lang.String md5DigestAsHex(byte[] bytes)
bytes
- the bytes to calculate the digest overpublic static java.lang.String md5DigestAsHex(java.io.InputStream inputStream) throws java.io.IOException
inputStream
- the InputStream to calculate the digest overjava.io.IOException
public static java.lang.StringBuilder appendMd5DigestAsHex(byte[] bytes, java.lang.StringBuilder builder)
StringBuilder
.bytes
- the bytes to calculate the digest overbuilder
- the string builder to append the digest topublic static java.lang.StringBuilder appendMd5DigestAsHex(java.io.InputStream inputStream, java.lang.StringBuilder builder) throws java.io.IOException
StringBuilder
.inputStream
- the inputStream to calculate the digest overbuilder
- the string builder to append the digest tojava.io.IOException