Enum Class CipherMode

java.lang.Object
java.lang.Enum<CipherMode>
org.jpos.security.CipherMode
All Implemented Interfaces:
Serializable, Comparable<CipherMode>, Constable

public enum CipherMode extends Enum<CipherMode>
Block cipher modes.
  • Enum Constant Details

    • ECB

      public static final CipherMode ECB
      Electronic Code Book.
    • CBC

      public static final CipherMode CBC
      Cipher-block chaining.
    • CFB8

      public static final CipherMode CFB8
      Cipher feedback, self-synchronizing with 8 bit shift register.
    • CFB64

      public static final CipherMode CFB64
      Cipher feedback, self-synchronizing with 64 bit shift register.
  • Method Details

    • values

      public static CipherMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CipherMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null