Enum CryptoHelper.DigestAlgorithm
- All Implemented Interfaces:
Serializable, Comparable<CryptoHelper.DigestAlgorithm>, java.lang.constant.Constable
- Enclosing class:
CryptoHelper
Algoritmo de huella digital.
- Author:
- Tomás García-Merás.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic CryptoHelper.DigestAlgorithmgetDigestAlgorithm(String name) Obtiene un algoritmo de huella digital a partir de su nombre.intObtiene la longitud (en octetos) de las huellas resultantes con este algoritmo.toString()static CryptoHelper.DigestAlgorithmReturns 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.
-
-
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:
toStringin 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.
-