Enum CryptoHelper.DigestAlgorithm

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      SHA1
      SHA-1.
      SHA256
      SHA-256.
      SHA384
      SHA-384.
      SHA512
      SHA-512.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int length
      Longitud (en octetos) de las huellas resultantes con este algoritmo.
      private java.lang.String name
      Nombre del algoritmo de huella digital.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private DigestAlgorithm​(java.lang.String n, int l)
      Construye el algoritmo de huella digital.
    • Field Detail

      • name

        private final java.lang.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 Detail

      • DigestAlgorithm

        private DigestAlgorithm​(java.lang.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 Detail

      • values

        public static CryptoHelper.DigestAlgorithm[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CryptoHelper.DigestAlgorithm c : CryptoHelper.DigestAlgorithm.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CryptoHelper.DigestAlgorithm valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • 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​(java.lang.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.