Module io.helidon.security.jwt
Package io.helidon.security.jwt
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
Supported AES cipher for content encryption.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCipher AES/CBC/PKCS5Padding will be used for content encryption and 128 bit key will be generated.Cipher AES/GCM/NoPadding will be used for content encryption and 128 bit key will be generated.Cipher AES/CBC/PKCS5Padding will be used for content encryption and 192 bit key will be generated.Cipher AES/GCM/NoPadding will be used for content encryption and 192 bit key will be generated.Cipher AES/CBC/PKCS5Padding will be used for content encryption and 256 bit key will be generated.Cipher AES/GCM/NoPadding will be used for content encryption and 256 bit key will be generated. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the enum constant of this class with the specified name.static EncryptedJwt.SupportedEncryption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
A128GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 128 bit key will be generated. -
A192GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 192 bit key will be generated. -
A256GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 256 bit key will be generated. -
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
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
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
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
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 nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<EncryptedJwt.SupportedEncryption>
-