|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CheckedHashAlgorithm | |
---|---|
org.pf.security.crypto |
Uses of CheckedHashAlgorithm in org.pf.security.crypto |
---|
Fields in org.pf.security.crypto declared as CheckedHashAlgorithm | |
---|---|
static CheckedHashAlgorithm |
CheckedHashAlgorithm.MD5
The pre-defined constant for the MD hash algorithm. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.SHA_1
The pre-defined constant for the SHA-1 hash algorithm. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.SHA_2_256
The pre-defined constant for the SHA-256 hash algorithm. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.SHA_2_384
The pre-defined constant for the SHA-384 hash algorithm. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.SHA_2_512
The pre-defined constant for the SHA-512 hash algorithm. |
Methods in org.pf.security.crypto that return CheckedHashAlgorithm | |
---|---|
static CheckedHashAlgorithm |
CheckedHashAlgorithm.create(String algorithmName)
Creates a new instance based on the given algorithm name. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.find(String algorithmName)
Looks for a predefined CheckedHashAlgorithm constant with the given algorithm name and returns it. |
static CheckedHashAlgorithm |
CheckedHashAlgorithm.findOrCreate(String algorithmName)
Looks for a predefined CheckedHashAlgorithm constant with the given algorithm name and returns it. |
CheckedHashAlgorithm |
HashMechanism.getAlgorithm()
|
static CheckedHashAlgorithm[] |
CheckedHashAlgorithm.getPredefinedAlgorithms()
Returns an array of all CheckedHashAlgorithm constants defined by this class. |
Methods in org.pf.security.crypto with parameters of type CheckedHashAlgorithm | |
---|---|
byte[] |
CryptoUtil.computeHash(byte[] content,
CheckedHashAlgorithm hashAlgorithm)
Computes a hash value for the given input data using the specified hashing algorithm. |
static HashMechanism |
HashMechanism.create(CheckedHashAlgorithm algorithm)
Creates a new instance that represents a particular unsalted hashing mechanism. |
static HashMechanism |
HashMechanism.create(CheckedHashAlgorithm algorithm,
boolean isSalted)
Creates a new instance that represents a particular hashing mechanism. |
static HashMechanism |
HashMechanism.create(String hashMechanismName,
CheckedHashAlgorithm algorithm,
boolean isSalted)
Creates a new instance that represents a particular hashing mechanism. |
static String |
HashMechanism.createHashMechanismName(CheckedHashAlgorithm algorithm,
boolean isSalted)
Returns a name for the hashing mechanism that is defined by the given parameters. |
Constructors in org.pf.security.crypto with parameters of type CheckedHashAlgorithm | |
---|---|
HashMechanism(String hashMechanismName,
CheckedHashAlgorithm algorithm,
boolean isSalted)
Creates a new instance that represents a particular hashing mechanism. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |