org.apache.commons.codec.digest
public class DigestUtils extends Object
MessageDigest
tasks. This class is thread safe.Modifier and Type | Field and Description |
---|---|
private static int |
STREAM_BUFFER_LENGTH |
Constructor and Description |
---|
DigestUtils() |
Modifier and Type | Method and Description |
---|---|
private static byte[] |
digest(MessageDigest digest,
InputStream data)
Read through an InputStream and returns the digest for the data
|
private static byte[] |
getBytesUtf8(String data)
|
(package private) static MessageDigest |
getDigest(String algorithm)
Returns a
MessageDigest for the given algorithm . |
private static MessageDigest |
getMd5Digest()
Returns an MD5 MessageDigest.
|
private static MessageDigest |
getSha256Digest()
Returns an SHA-256 digest.
|
private static MessageDigest |
getSha384Digest()
Returns an SHA-384 digest.
|
private static MessageDigest |
getSha512Digest()
Returns an SHA-512 digest.
|
private static MessageDigest |
getShaDigest()
Returns an SHA-1 digest.
|
static byte[] |
md5(byte[] data)
Calculates the MD5 digest and returns the value as a 16 element
byte[] . |
static byte[] |
md5(InputStream data)
Calculates the MD5 digest and returns the value as a 16 element
byte[] . |
static byte[] |
md5(String data)
Calculates the MD5 digest and returns the value as a 16 element
byte[] . |
static String |
md5Hex(byte[] data)
Calculates the MD5 digest and returns the value as a 32 character hex string.
|
static String |
md5Hex(InputStream data)
Calculates the MD5 digest and returns the value as a 32 character hex string.
|
static String |
md5Hex(String data)
Calculates the MD5 digest and returns the value as a 32 character hex string.
|
static byte[] |
sha(byte[] data)
Calculates the SHA-1 digest and returns the value as a
byte[] . |
static byte[] |
sha(InputStream data)
Calculates the SHA-1 digest and returns the value as a
byte[] . |
static byte[] |
sha(String data)
Calculates the SHA-1 digest and returns the value as a
byte[] . |
static byte[] |
sha256(byte[] data)
Calculates the SHA-256 digest and returns the value as a
byte[] . |
static byte[] |
sha256(InputStream data)
Calculates the SHA-256 digest and returns the value as a
byte[] . |
static byte[] |
sha256(String data)
Calculates the SHA-256 digest and returns the value as a
byte[] . |
static String |
sha256Hex(byte[] data)
Calculates the SHA-256 digest and returns the value as a hex string.
|
static String |
sha256Hex(InputStream data)
Calculates the SHA-256 digest and returns the value as a hex string.
|
static String |
sha256Hex(String data)
Calculates the SHA-256 digest and returns the value as a hex string.
|
static byte[] |
sha384(byte[] data)
Calculates the SHA-384 digest and returns the value as a
byte[] . |
static byte[] |
sha384(InputStream data)
Calculates the SHA-384 digest and returns the value as a
byte[] . |
static byte[] |
sha384(String data)
Calculates the SHA-384 digest and returns the value as a
byte[] . |
static String |
sha384Hex(byte[] data)
Calculates the SHA-384 digest and returns the value as a hex string.
|
static String |
sha384Hex(InputStream data)
Calculates the SHA-384 digest and returns the value as a hex string.
|
static String |
sha384Hex(String data)
Calculates the SHA-384 digest and returns the value as a hex string.
|
static byte[] |
sha512(byte[] data)
Calculates the SHA-512 digest and returns the value as a
byte[] . |
static byte[] |
sha512(InputStream data)
Calculates the SHA-512 digest and returns the value as a
byte[] . |
static byte[] |
sha512(String data)
Calculates the SHA-512 digest and returns the value as a
byte[] . |
static String |
sha512Hex(byte[] data)
Calculates the SHA-512 digest and returns the value as a hex string.
|
static String |
sha512Hex(InputStream data)
Calculates the SHA-512 digest and returns the value as a hex string.
|
static String |
sha512Hex(String data)
Calculates the SHA-512 digest and returns the value as a hex string.
|
static String |
shaHex(byte[] data)
Calculates the SHA-1 digest and returns the value as a hex string.
|
static String |
shaHex(InputStream data)
Calculates the SHA-1 digest and returns the value as a hex string.
|
static String |
shaHex(String data)
Calculates the SHA-1 digest and returns the value as a hex string.
|
private static final int STREAM_BUFFER_LENGTH
private static byte[] digest(MessageDigest digest, InputStream data) throws IOException
digest
- The MessageDigest to use (e.g. MD5)data
- Data to digestIOException
- On error reading from the streamprivate static byte[] getBytesUtf8(String data)
data
- the String to encodestatic MessageDigest getDigest(String algorithm)
MessageDigest
for the given algorithm
.algorithm
- the name of the algorithm requested. See Appendix A in the Java
Cryptography Architecture API Specification & Reference for information about standard algorithm
names.RuntimeException
- when a NoSuchAlgorithmException
is caught.MessageDigest.getInstance(String)
private static MessageDigest getMd5Digest()
RuntimeException
- when a NoSuchAlgorithmException
is caught.private static MessageDigest getSha256Digest()
Throws a RuntimeException
on JRE versions prior to 1.4.0.
RuntimeException
- when a NoSuchAlgorithmException
is caught.private static MessageDigest getSha384Digest()
Throws a RuntimeException
on JRE versions prior to 1.4.0.
RuntimeException
- when a NoSuchAlgorithmException
is caught.private static MessageDigest getSha512Digest()
Throws a RuntimeException
on JRE versions prior to 1.4.0.
RuntimeException
- when a NoSuchAlgorithmException
is caught.private static MessageDigest getShaDigest()
RuntimeException
- when a NoSuchAlgorithmException
is caught.public static byte[] md5(byte[] data)
byte[]
.data
- Data to digestpublic static byte[] md5(InputStream data) throws IOException
byte[]
.data
- Data to digestIOException
- On error reading from the streampublic static byte[] md5(String data)
byte[]
.data
- Data to digestpublic static String md5Hex(byte[] data)
data
- Data to digestpublic static String md5Hex(InputStream data) throws IOException
data
- Data to digestIOException
- On error reading from the streampublic static String md5Hex(String data)
data
- Data to digestpublic static byte[] sha(byte[] data)
byte[]
.data
- Data to digestpublic static byte[] sha(InputStream data) throws IOException
byte[]
.data
- Data to digestIOException
- On error reading from the streampublic static byte[] sha(String data)
byte[]
.data
- Data to digestpublic static byte[] sha256(byte[] data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static byte[] sha256(InputStream data) throws IOException
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static byte[] sha256(String data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha256Hex(byte[] data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha256Hex(InputStream data) throws IOException
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static String sha256Hex(String data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static byte[] sha384(byte[] data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static byte[] sha384(InputStream data) throws IOException
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static byte[] sha384(String data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha384Hex(byte[] data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha384Hex(InputStream data) throws IOException
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static String sha384Hex(String data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static byte[] sha512(byte[] data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static byte[] sha512(InputStream data) throws IOException
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static byte[] sha512(String data)
byte[]
.
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha512Hex(byte[] data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String sha512Hex(InputStream data) throws IOException
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestIOException
- On error reading from the streampublic static String sha512Hex(String data)
Throws a RuntimeException
on JRE versions prior to 1.4.0.
data
- Data to digestpublic static String shaHex(byte[] data)
data
- Data to digestpublic static String shaHex(InputStream data) throws IOException
data
- Data to digestIOException
- On error reading from the streamcommons-codec version 1.6-SNAPSHOT - Copyright © 2002-2014 - Apache Software Foundation