Enum Class CipherMode

java.lang.Object
java.lang.Enum<CipherMode>
net.randombit.botan.seckey.CipherMode
All Implemented Interfaces:
Serializable, Comparable<CipherMode>, Constable

public enum CipherMode extends Enum<CipherMode>
  • Enum Constant Details

    • CBC

      public static final CipherMode CBC
      Cipher block chaining mode.
    • CFB

      public static final CipherMode CFB
      Cipher feedback mode.
    • CTR

      public static final CipherMode CTR
      Counter mode.
    • OFB

      public static final CipherMode OFB
      Output feedback mode.
    • GCM

      public static final CipherMode GCM
      Galois counter mode.
    • CCM

      public static final CipherMode CCM
      Counter with CBC-MAC
    • SIV

      public static final CipherMode SIV
      Synthetic Initialization Vector.
    • EAX

      public static final CipherMode EAX
      Encrypt-then-authenticate-then-translate mode.
    • OCB

      public static final CipherMode OCB
      Offset Codebook Mode.
  • 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
    • isPaddingSupported

      public boolean isPaddingSupported(PaddingAlgorithm algorithm)