Enum CryptoHelper.DigestAlgorithm

java.lang.Object
java.lang.Enum<CryptoHelper.DigestAlgorithm>
es.gob.jmulticard.CryptoHelper.DigestAlgorithm
All Implemented Interfaces:
Serializable, Comparable<CryptoHelper.DigestAlgorithm>, java.lang.constant.Constable
Enclosing class:
CryptoHelper

public static enum CryptoHelper.DigestAlgorithm extends Enum<CryptoHelper.DigestAlgorithm>
Algoritmo de huella digital.
  • Enum Constant Details

  • Field Details

    • name

      private final String name
      Nombre del algoritmo de huella digital.
    • length

      private final int length
      Longitud (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

      private DigestAlgorithm(String n, int l)
      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

      public static CryptoHelper.DigestAlgorithm[] 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

      public static CryptoHelper.DigestAlgorithm valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<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

      public static CryptoHelper.DigestAlgorithm getDigestAlgorithm(String name)
      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.