Enum BlockEncryptionAlgorithm

java.lang.Object
java.lang.Enum<BlockEncryptionAlgorithm>
io.jans.as.model.crypto.encryption.BlockEncryptionAlgorithm
All Implemented Interfaces:
Serializable, Comparable<BlockEncryptionAlgorithm>, java.lang.constant.Constable

public enum BlockEncryptionAlgorithm extends Enum<BlockEncryptionAlgorithm>
Author:
Javier Rojas Blum Date: 12.03.2012
  • Enum Constant Details

  • Method Details

    • values

      public static BlockEncryptionAlgorithm[] 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 BlockEncryptionAlgorithm 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
    • getName

      public String getName()
    • getFamily

      public String getFamily()
    • getMessageDiggestAlgorithm

      public String getMessageDiggestAlgorithm()
    • getIntegrityValueAlgorithm

      public String getIntegrityValueAlgorithm()
    • getAlgorithm

      public String getAlgorithm()
    • getCmkLength

      public int getCmkLength()
    • getInitVectorLength

      public int getInitVectorLength()
    • getCekLength

      public Integer getCekLength()
    • fromName

      public static BlockEncryptionAlgorithm fromName(String name)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<BlockEncryptionAlgorithm>