Module crypt.api

Enum Class PaddingScheme

java.lang.Object
java.lang.Enum<PaddingScheme>
io.github.astrapi69.crypt.api.padding.PaddingScheme
All Implemented Interfaces:
Serializable, Comparable<PaddingScheme>, Constable

public enum PaddingScheme extends Enum<PaddingScheme>
The enum PaddingScheme.
  • Enum Constant Details

    • NoPadding

      public static final PaddingScheme NoPadding
      The No padding.
    • OAEPPadding

      public static final PaddingScheme OAEPPadding
      The OAEP padding.
    • OAEPWithSHA_1AndMGF1Padding

      public static final PaddingScheme OAEPWithSHA_1AndMGF1Padding
      The OAEP with SHA 1 and MGF 1 padding.
    • OAEPWithSHA_256AndMGF1Padding

      public static final PaddingScheme OAEPWithSHA_256AndMGF1Padding
      The OAEP with SHA 256 and MGF 1 padding.
    • OAEPWithSHA1AndMGF1Padding

      public static final PaddingScheme OAEPWithSHA1AndMGF1Padding
      The OAEP with SHA 1 and MGF 1 padding.
    • OAEPWithSHA256AndMGF1Padding

      public static final PaddingScheme OAEPWithSHA256AndMGF1Padding
      The OAEP with SHA 256 and MGF 1 padding.
    • PKCS1Padding

      public static final PaddingScheme PKCS1Padding
      The enum constant for the 'PKCS1Padding' algorithm
    • PKCS5Padding

      public static final PaddingScheme PKCS5Padding
      The enum constant for the 'PKCS5Padding' algorithm
    • SSL3Padding

      public static final PaddingScheme SSL3Padding
      The enum constant for the 'SSL3Padding' algorithm
    • UNKNOWN

      public static final PaddingScheme UNKNOWN
      The constant 'UNKNOWN' if the padding scheme is not known or cannot be resolved
  • Method Details

    • values

      public static PaddingScheme[] 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 PaddingScheme 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
    • getScheme

      public String getScheme()