B C D G I R S U V 

B

bytesToHex(byte[]) - Static method in class com.neovisionaries.security.Digest
Convert the given byte array to a hex string.

C

clone() - Method in class com.neovisionaries.security.Digest
Get a clone of this Digest instance.
com.neovisionaries.security - package com.neovisionaries.security
 

D

Digest - Class in com.neovisionaries.security
A wrapper class over MessageDigest with many update methods in a fluent style, meaning update methods can be chained.
Digest(MessageDigest) - Constructor for class com.neovisionaries.security.Digest
Constructor with a MessageDigest instance.
Digest(String) - Constructor for class com.neovisionaries.security.Digest
Constructor with an algorithm name.
Digest(String, String) - Constructor for class com.neovisionaries.security.Digest
Constructor with an algorithm name and a provider.
Digest(String, Provider) - Constructor for class com.neovisionaries.security.Digest
Constructor with an algorithm name and a provider.
digest() - Method in class com.neovisionaries.security.Digest
Complete the hash computation.
digest(byte[]) - Method in class com.neovisionaries.security.Digest
Perform the final update with the given byte array, and then complete the hash computation.
digest(byte[], int, int) - Method in class com.neovisionaries.security.Digest
Complete the hash computation.
Digest.Feature - Enum in com.neovisionaries.security
Features to control behaviors.
digestAsString() - Method in class com.neovisionaries.security.Digest
Complete the hash computation and get the resulting hash value as a hex string.
digestAsString(byte[]) - Method in class com.neovisionaries.security.Digest
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.
digestAsString(BinaryEncoder) - Method in class com.neovisionaries.security.Digest
Complete the hash computation and get the resulting hash value as a string.
digestAsString(byte[], BinaryEncoder) - Method in class com.neovisionaries.security.Digest
Perform the final update with the given byte array, and then complete the hash computation and get the resulting hash value as a string.

G

getAlgorithm() - Method in class com.neovisionaries.security.Digest
Get the algorithm name.
getDigestLength() - Method in class com.neovisionaries.security.Digest
Get the length of the digest in bytes.
getInstance(String) - Static method in class com.neovisionaries.security.Digest
Create a Digest instance with the specified algorithm.
getInstance(String, String) - Static method in class com.neovisionaries.security.Digest
Create a Digest instance with the specified algorithm.
getInstance(String, Provider) - Static method in class com.neovisionaries.security.Digest
Create a Digest instance with the specified algorithm.
getInstanceMD2() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements MD2.
getInstanceMD5() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements MD5.
getInstanceSHA1() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements SHA-1.
getInstanceSHA256() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements SHA-256.
getInstanceSHA384() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements SHA-384.
getInstanceSHA512() - Static method in class com.neovisionaries.security.Digest
Create a Digest instance that implements SHA-512.
getProvider() - Method in class com.neovisionaries.security.Digest
Get the provider.
getWrappedMessageDigest() - Method in class com.neovisionaries.security.Digest
Get the wrapped MessageDigest instance.

I

isEnabled(Digest.Feature) - Method in class com.neovisionaries.security.Digest
Check if the specified feature is enabled.

R

reset() - Method in class com.neovisionaries.security.Digest
Reset the wrapped MessageDigest instance.

S

setEnabled(Digest.Feature, boolean) - Method in class com.neovisionaries.security.Digest
Enable or disable the specified feature.

U

update(byte) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(byte[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(byte[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(ByteBuffer) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Boolean) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Boolean[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Boolean[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(boolean) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(boolean[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(boolean[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Character) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Character[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Character[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(char) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(char[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(char[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(short) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(short[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(short[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(int[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(int[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(long) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(long[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(long[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(float) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(float[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(float[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(double) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(double[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(double[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Number) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(TNumber[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(TNumber[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(String) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(String[]) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(String[], int, int) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Iterable<?>) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Object...) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
update(Object) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given input data.
updateJson(String) - Method in class com.neovisionaries.security.Digest
Update the wrapped MessageDigest object with the given JSON.

V

valueOf(String) - Static method in enum com.neovisionaries.security.Digest.Feature
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.neovisionaries.security.Digest.Feature
Returns an array containing the constants of this enum type, in the order they are declared.
B C D G I R S U V 

Copyright © 2015. All rights reserved.