public class Digest extends Object implements Cloneable
update
methods in a fluent style, meaning update
methods
can be chained.
update
methods are provided for all the primitive types
and String
, and their array types. In addition,
updateJson(String)
has been available since the version
1.2 which updates the digest with the content of the given JSON.
Note that update(String)
and updateJson(String)
are different.
getInstanceXXX
methods (where XXX
is a pre-defined algorithm name with hyphens removed) such as
getInstanceSHA1()
are provided. They won't throw
NoSuchAlgorithmException
.
// Compute SHA-1 of "Hello, world.". // 'digest' will have "2ae01472317d1935a84797ec1983ae243fc6aa28". String digest = Digest.getInstanceSHA1()
.update
("Hello, world.") .digestAsString()
; // Compute SHA-1 of "Hello, world." and get the result as Base64. // 'digest' will have "KuAUcjF9GTWoR5fsGYOuJD/Gqig=". String digest = Digest.getInstanceSHA1()
.update
("Hello, world.") .digestAsString
(newBase64()
); // Compute SHA-1 of two JSONs. // 'result1' and 'result2' will have the same value. String json1 = "{ \"key1\":\"value1\", \"key2\":\"value2\" }"; String json2 = "{ \"key2\":\"value2\", \"key1\":\"value1\" }"; String result1 = Digest.getInstanceSHA1()
.updateJson
(json1).digestAsString()
; String result2 = Digest.getInstanceSHA1()
.updateJson
(json2).digestAsString()
;
Modifier and Type | Class and Description |
---|---|
static class |
Digest.Feature
Features to control behaviors.
|
Constructor and Description |
---|
Digest(MessageDigest messageDigest)
Constructor with a
MessageDigest instance. |
Digest(String algorithm)
Constructor with an algorithm name.
|
Digest(String algorithm,
Provider provider)
Constructor with an algorithm name and a provider.
|
Digest(String algorithm,
String provider)
Constructor with an algorithm name and a provider.
|
Modifier and Type | Method and Description |
---|---|
static String |
bytesToHex(byte[] bytes)
Convert the given byte array to a hex string.
|
Object |
clone()
Get a clone of this
Digest instance. |
byte[] |
digest()
Complete the hash computation.
|
byte[] |
digest(byte[] input)
Perform the final update with the given byte array, and then
complete the hash computation.
|
int |
digest(byte[] output,
int offset,
int length)
Complete the hash computation.
|
String |
digestAsString()
Complete the hash computation and get the resulting hash value
as a hex string.
|
String |
digestAsString(org.apache.commons.codec.BinaryEncoder encoder)
Complete the hash computation and get the resulting hash value
as a string.
|
String |
digestAsString(byte[] input)
Perform the final update with the given byte array, and then
complete the hash computation and get the resulting hash value
as a hex string.
|
String |
digestAsString(byte[] input,
org.apache.commons.codec.BinaryEncoder encoder)
Perform the final update with the given byte array, and then
complete the hash computation and get the resulting hash value
as a string.
|
String |
getAlgorithm()
Get the algorithm name.
|
int |
getDigestLength()
Get the length of the digest in bytes.
|
static Digest |
getInstance(String algorithm)
Create a
Digest instance with the specified algorithm. |
static Digest |
getInstance(String algorithm,
Provider provider)
Create a
Digest instance with the specified algorithm. |
static Digest |
getInstance(String algorithm,
String provider)
Create a
Digest instance with the specified algorithm. |
static Digest |
getInstanceMD2()
Create a
Digest instance that implements MD2. |
static Digest |
getInstanceMD5()
Create a
Digest instance that implements MD5. |
static Digest |
getInstanceSHA1()
Create a
Digest instance that implements SHA-1. |
static Digest |
getInstanceSHA256()
Create a
Digest instance that implements SHA-256. |
static Digest |
getInstanceSHA384()
Create a
Digest instance that implements SHA-384. |
static Digest |
getInstanceSHA512()
Create a
Digest instance that implements SHA-512. |
Provider |
getProvider()
Get the provider.
|
MessageDigest |
getWrappedMessageDigest()
Get the wrapped
MessageDigest instance. |
boolean |
isEnabled(Digest.Feature feature)
Check if the specified feature is enabled.
|
Digest |
reset()
Reset the wrapped
MessageDigest instance. |
Digest |
setEnabled(Digest.Feature feature,
boolean enabled)
Enable or disable the specified feature.
|
Digest |
update(boolean input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Boolean input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(boolean[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Boolean[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(boolean[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Boolean[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(byte input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(byte[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(byte[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(ByteBuffer input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(char input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(char[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(char[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Character input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Character[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Character[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(double input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(double[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(double[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(float input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(float[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(float[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(int input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(int[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(int[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Iterable<?> input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(long input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(long[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(long[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Number number)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Object... input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(Object input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(short input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(short[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(short[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(String input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(String[] input)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
update(String[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
<TNumber extends Number> |
update(TNumber[] input)
Update the wrapped
MessageDigest object with the
given input data. |
<TNumber extends Number> |
update(TNumber[] input,
int offset,
int length)
Update the wrapped
MessageDigest object with the
given input data. |
Digest |
updateJson(String json)
Update the wrapped
MessageDigest object with the
given JSON. |
public Digest(MessageDigest messageDigest)
MessageDigest
instance.messageDigest
- A MessageDigest
instance wrapped in this
Digest
instance.IllegalArgumentException
- The given argument is null.public Digest(String algorithm) throws NoSuchAlgorithmException
This constructor is equivalent to this
(
MessageDigest.getInstance
(algorithm))
.
algorithm
- Algorithm name such as "MD5" and "SHA-1".NoSuchAlgorithmException
- No provider supports the specified algorithm.public Digest(String algorithm, String provider) throws NoSuchAlgorithmException, NoSuchProviderException
This constructor is equivalent to this
(
MessageDigest.getInstance
(algorithm, provider))
.
algorithm
- Algorithm name such as "MD5" and "SHA-1".provider
- Provider name.NoSuchAlgorithmException
- The provider does not support the specified algorithm.NoSuchProviderException
- The specified provider is not registered in the security provider list.public Digest(String algorithm, Provider provider) throws NoSuchAlgorithmException
This constructor is equivalent to this
(
MessageDigest.getInstance
(algorithm, provider))
.
algorithm
- Algorithm name such as "MD5" and "SHA-1".provider
- Provider.NoSuchAlgorithmException
- The provider does not support the specified algorithm.public static Digest getInstance(String algorithm) throws NoSuchAlgorithmException
Digest
instance with the specified algorithm.
This method creates a MessageDigest
instance by
MessageDigest.getInstance(String)
and wraps it
in a Digest
instance.
algorithm
- Algorithm name such as "MD5" and "SHA-1".Digest
instance that implements the specified algorithm.NoSuchAlgorithmException
- No provider supports the specified algorithm.public static Digest getInstance(String algorithm, String provider) throws NoSuchAlgorithmException, NoSuchProviderException
Digest
instance with the specified algorithm.
This method creates a MessageDigest
instance by
MessageDigest.getInstance(String, String)
and wraps it
in a Digest
instance.
algorithm
- Algorithm name such as "MD5" and "SHA-1".provider
- Provider name.Digest
instance that implements the specified algorithm.NoSuchAlgorithmException
- The provider does not support the specified algorithm.NoSuchProviderException
- The specified provider is not registered in the security provider list.public static Digest getInstance(String algorithm, Provider provider) throws NoSuchAlgorithmException
Digest
instance with the specified algorithm.
This method creates a MessageDigest
instance by
MessageDigest.getInstance(String, Provider)
and wraps it
in a Digest
instance.
algorithm
- Algorithm name such as "MD5" and "SHA-1".provider
- Provider.Digest
instance that implements the specified algorithm.NoSuchAlgorithmException
- The provider does not support the specified algorithm.public static Digest getInstanceMD2()
Digest
instance that implements MD2.Digest
instance that implements MD2.public static Digest getInstanceMD5()
Digest
instance that implements MD5.Digest
instance that implements MD5.public static Digest getInstanceSHA1()
Digest
instance that implements SHA-1.Digest
instance that implements SHA-1.public static Digest getInstanceSHA256()
Digest
instance that implements SHA-256.Digest
instance that implements SHA-256.public static Digest getInstanceSHA384()
Digest
instance that implements SHA-384.Digest
instance that implements SHA-384.public static Digest getInstanceSHA512()
Digest
instance that implements SHA-512.Digest
instance that implements SHA-512.public String getAlgorithm()
This method just calls getAlgorithm()
of the wrapped MessageDigest
instance.
public int getDigestLength()
This method just calls getDigestLength()
of the wrapped MessageDigest
instance.
public Provider getProvider()
This method just calls getProvider()
of the wrapped MessageDigest
instance.
public MessageDigest getWrappedMessageDigest()
MessageDigest
instance.MessageDigest
instance that has been
given to the constructor.public Object clone() throws CloneNotSupportedException
Digest
instance.clone
in class Object
CloneNotSupportedException
- The implementation does not support clone
operation.public byte[] digest()
This method just calls digest()
method of the wrapped MessageDigest
instance.
public byte[] digest(byte[] input)
This method just calls digest(byte[])
method of the wrapped MessageDigest
instance.
input
- Byte array used for the last update.public int digest(byte[] output, int offset, int length) throws DigestException
This method just calls digest(byte[], int, int)
method of the wrapped MessageDigest
instance.
output
- Output buffer for the computed digest.offset
- Offset into the output buffer to begin storing the digest.length
- Number of bytes within the output buffer allotted for the digest.DigestException
public String digestAsString()
This method calls digest()
method and converts the result
to a String object.
public String digestAsString(byte[] input)
This method calls digest(byte[])
method and converts
the result to a String object.
input
- Byte array used for the last update.public String digestAsString(org.apache.commons.codec.BinaryEncoder encoder)
This method is an alias of digestAsString((byte[])null, encoder)
.
encoder
- Encoder to convert a digest value to a byte array
whose elements are printable characters. For example,
org.apache.commons.codec.binary.Base64
.RuntimeException
- If the encoder throws EncoderException
,
a RuntimeException
wrapping the
EncoderException
is thrown.public String digestAsString(byte[] input, org.apache.commons.codec.BinaryEncoder encoder)
input
- Byte array used for the last update. If null
is given, it is just ignored.encoder
- Encoder to convert a digest value to a byte array
whose elements are printable characters. For example,
org.apache.commons.codec.binary.Base64
.IllegalArgumentException
- encoder
is null
.RuntimeException
- If the encoder throws EncoderException
,
a RuntimeException
wrapping the
EncoderException
is thrown.public Digest reset()
MessageDigest
instance.this
object.public Digest update(byte input)
MessageDigest
object with the
given input data.
This method calls update(byte)
method of the wrapped MessageDigest
instance.
input
- Input data.this
object.public Digest update(byte[] input)
MessageDigest
object with the
given input data.
This method calls update(byte[])
method of the wrapped MessageDigest
instance.
input
- Input data.this
object.public Digest update(byte[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(byte[], int, int)
method of the wrapped
MessageDigest
instance.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.public Digest update(ByteBuffer input)
MessageDigest
object with the
given input data.
This method calls update(ByteBuffer)
method of the wrapped MessageDigest
instance.
input
- Input data.this
object.public Digest update(Boolean input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input.booleanValue())
.
input
- Input data.this
object.public Digest update(Boolean[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(Boolean[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(Boolean)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(boolean input)
MessageDigest
object with the
given input data.public Digest update(boolean[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(boolean[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(boolean)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(Character input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input.charValue())
.
input
- Input data.this
object.public Digest update(Character[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(Character[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(Character)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(char input)
MessageDigest
object with the
given input data.
This method calls update
((byte)((input >> 8) & 0xff))
and update
(((byte)(input >> 0) & 0xff)
.
input
- Input data.this
object.public Digest update(char[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(char[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(char)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(short input)
MessageDigest
object with the
given input data.
This method calls update
((byte)((input >> 8) & 0xff))
and update
(((byte)(input >> 0) & 0xff)
.
input
- Input data.this
object.public Digest update(short[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(short[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(short)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(int input)
MessageDigest
object with the
given input data.
This method calls update(byte)
for each byte of the
4 bytes from MSB to LSB (from ((input >> 24) & 0xff)
to ((input >> 0) & 0xff)
).
input
- Input data.this
object.public Digest update(int[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(int[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(int)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(long input)
MessageDigest
object with the
given input data.
This method calls update(byte)
for each byte of the
8 bytes from MSB to LSB (from ((input >> 54) & 0xff)
to ((input >> 0) & 0xff)
).
input
- Input data.this
object.public Digest update(long[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(long[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(long)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(float input)
MessageDigest
object with the
given input data.
This method converts the given float
value to a
int
by Float.floatToRawIntBits(float)
and then passes it to update(int)
.
input
- Input data.this
object.public Digest update(float[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(float[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(float)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(double input)
MessageDigest
object with the
given input data.
This method converts the given double
value to a
long
by Double.doubleToRawLongBits(double)
and then passes it to update(long)
.
input
- Input data.this
object.public Digest update(double[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(double[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(double)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(Number number)
MessageDigest
object with the
given input data.
This method checks the class of the given instance and
calls a corresponding update
method.
Class | Executed code |
---|---|
Byte |
update (((Byte)number).byteValue()) |
Short |
update (((Short)number).shortValue()) |
Integer |
update (((Integer)number).intValue()) |
Long |
update (((Long)number).longValue()) |
Float |
update (((Float)number).floatValue()) |
Double |
update (((Double)number).doubleValue()) |
BigInteger |
update (((BigInteger)number).toByteArray()) |
BigDecimal |
update (((BigDecimal)number).toString()) |
AtomicInteger |
update (((AtomicInteger)number).intValue()) |
AtomicLong |
update (((AtomicLong)number).longValue()) |
Others | Ignored. |
number
- Input data. If null or none of the above, update is not performed.this
object.public <TNumber extends Number> Digest update(TNumber[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public <TNumber extends Number> Digest update(TNumber[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(Number)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(String input)
MessageDigest
object with the
given input data.
This method converts the given string into bytes with the
character set of UTF-8 and then passes the byte array to
update(byte[])
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(String[] input)
MessageDigest
object with the
given input data.
This method is an alias of update
(input, 0, input.length)
.
input
- Input data. If null is given, update is not performed.this
object.public Digest update(String[] input, int offset, int length)
MessageDigest
object with the
given input data.
This method calls update(String)
for each
array element which is in the specified range.
input
- Input data.offset
- The offset to start from in the array.length
- The number of elements to use, starting at offset.this
object.IllegalArgumentException
- The range specified by the parameters is invalid.public Digest update(Iterable<?> input)
MessageDigest
object with the
given input data.
This method calls update(Object)
for each element.
input
- Input data. If null
is given, update is not performed.
null
elements are ignored. Elements of unsupported
classes are ignored, too.this
object.public Digest update(Object... input)
MessageDigest
object with the
given input data.
This method calls update(Object)
for each element.
input
- Input data. If null
is given, update is not performed.
null
elements are ignored. Elements of unsupported
classes are ignored, too.this
object.public Digest update(Object input)
MessageDigest
object with the
given input data.
This method checks the class of the given object and calls
a corresponding update
method.
input
- Input data. If null
is given, update is not performed.this
object.public Digest updateJson(String json) throws IOException
MessageDigest
object with the
given JSON. This method updates the digest based on the
content of the given JSON, and in the respect, this method
is different from update(String)
.
JSONs with the same content, for example, two JSONs below, generate the same digest.
{ "key1":"value1", "key2":"value2" } { "key1" : "value1" , "key2" : "value2" }
If Digest.Feature.IGNORE_JSON_OBJECT_ENTRY_WITH_VALUE_NULL
is enabled (it is disabled by default), key-value entries
with value 'null' are treated as if they did not exist.
Therefore, two JSONs below generate the same digest value.
{ "key1":"value1", "key2":null } { "key1":"value1" }
If Digest.Feature.SORT_JSON_OBJECT_ENTRY_KEYS
is enabled
(it is enabled by default), orders of JSON object keys do
not matter. Therefore, two JSONs below generate the same
digest value.
{ "key1":"value1", "key2":"value2" } { "key2":"value2", "key1":"value1" }
json
- JSON.this
object.IOException
- Failed to parse the given JSON.public boolean isEnabled(Digest.Feature feature)
feature
- Feature to check.true
if the feature is enabled. Otherwise, false
.public Digest setEnabled(Digest.Feature feature, boolean enabled)
feature
- Digest.Feature
to enable or disable.enabled
- true
to enable the feature.
false
to disable the feature.this
object.public static String bytesToHex(byte[] bytes)
bytes
- Copyright © 2015. All rights reserved.