Package es.gob.jmulticard
Enum CryptoHelper.DigestAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<CryptoHelper.DigestAlgorithm>
,java.lang.constant.Constable
- Enclosing class:
CryptoHelper
Algoritmo de huella digital.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
DigestAlgorithm
(String n, int l) Construye el algoritmo de huella digital. -
Method Summary
Modifier and TypeMethodDescriptionstatic CryptoHelper.DigestAlgorithm
getDigestAlgorithm
(String name) Obtiene un algoritmo de huella digital a partir de su nombre.int
Obtiene la longitud (en octetos) de las huellas resultantes con este algoritmo.toString()
static CryptoHelper.DigestAlgorithm
Returns the enum constant of this type with the specified name.static CryptoHelper.DigestAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SHA1
SHA-1. -
SHA256
SHA-256. -
SHA384
SHA-384. -
SHA512
SHA-512.
-
-
Field Details
-
name
Nombre del algoritmo de huella digital. -
length
private final int lengthLongitud (en octetos) de las huellas resultantes con este algoritmo. La longitud se proporciona estáticamente para no introducir aquí dependencias con proveedores de seguridad de Java o con BouncyCastle.
-
-
Constructor Details
-
DigestAlgorithm
Construye el algoritmo de huella digital.- Parameters:
n
- Nombre del algoritmo.l
- Longitud (en octetos) de las huellas resultantes con este algoritmo.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<CryptoHelper.DigestAlgorithm>
-
getDigestLength
public int getDigestLength()Obtiene la longitud (en octetos) de las huellas resultantes con este algoritmo.- Returns:
- Longitud (en octetos) de las huellas resultantes con este algoritmo.
-
getDigestAlgorithm
Obtiene un algoritmo de huella digital a partir de su nombre.- Parameters:
name
- Nombre del algoritmo de huella digital a partir de su nombre.- Returns:
- Algoritmo de huella digital.
-