public abstract class DigestUtils
extends java.lang.Object
| 构造器和说明 |
|---|
DigestUtils() |
| 限定符和类型 | 方法和说明 |
|---|---|
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 InputStream.
|
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
inputStream.
|
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.IOExceptionpublic 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.IOExceptionpublic 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