Enum Class EncryptedJwt.SupportedEncryption

java.lang.Object
java.lang.Enum<EncryptedJwt.SupportedEncryption>
io.helidon.security.jwt.EncryptedJwt.SupportedEncryption
All Implemented Interfaces:
Serializable, Comparable<EncryptedJwt.SupportedEncryption>, Constable
Enclosing class:
EncryptedJwt

public static enum EncryptedJwt.SupportedEncryption extends Enum<EncryptedJwt.SupportedEncryption>
Supported AES cipher for content encryption.
  • Enum Constant Details

    • A128GCM

      public static final EncryptedJwt.SupportedEncryption A128GCM
      Cipher AES/GCM/NoPadding will be used for content encryption and 128 bit key will be generated.
    • A192GCM

      public static final EncryptedJwt.SupportedEncryption A192GCM
      Cipher AES/GCM/NoPadding will be used for content encryption and 192 bit key will be generated.
    • A256GCM

      public static final EncryptedJwt.SupportedEncryption A256GCM
      Cipher AES/GCM/NoPadding will be used for content encryption and 256 bit key will be generated.
    • A128CBC_HS256

      public static final EncryptedJwt.SupportedEncryption A128CBC_HS256
      Cipher AES/CBC/PKCS5Padding will be used for content encryption and 128 bit key will be generated. Authentication tag is generated by using HmacSHA256.
    • A192CBC_HS384

      public static final EncryptedJwt.SupportedEncryption A192CBC_HS384
      Cipher AES/CBC/PKCS5Padding will be used for content encryption and 192 bit key will be generated. Authentication tag is generated by using HmacSHA384.
    • A256CBC_HS512

      public static final EncryptedJwt.SupportedEncryption A256CBC_HS512
      Cipher AES/CBC/PKCS5Padding will be used for content encryption and 256 bit key will be generated. Authentication tag is generated by using HmacSHA512.
  • Method Details

    • values

      public static EncryptedJwt.SupportedEncryption[] 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 EncryptedJwt.SupportedEncryption 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EncryptedJwt.SupportedEncryption>