Module io.helidon.security.jwt
Package io.helidon.security.jwt
Enum EncryptedJwt.SupportedEncryption
- java.lang.Object
-
- java.lang.Enum<EncryptedJwt.SupportedEncryption>
-
- io.helidon.security.jwt.EncryptedJwt.SupportedEncryption
-
- All Implemented Interfaces:
Serializable
,Comparable<EncryptedJwt.SupportedEncryption>
- Enclosing class:
- EncryptedJwt
public static enum EncryptedJwt.SupportedEncryption extends Enum<EncryptedJwt.SupportedEncryption>
Supported AES cipher for content encryption.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A128CBC_HS256
Cipher AES/CBC/PKCS5Padding will be used for content encryption and 128 bit key will be generated.A128GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 128 bit key will be generated.A192CBC_HS384
Cipher AES/CBC/PKCS5Padding will be used for content encryption and 192 bit key will be generated.A192GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 192 bit key will be generated.A256CBC_HS512
Cipher AES/CBC/PKCS5Padding will be used for content encryption and 256 bit key will be generated.A256GCM
Cipher AES/GCM/NoPadding will be used for content encryption and 256 bit key will be generated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static EncryptedJwt.SupportedEncryption
valueOf(String name)
Returns the enum constant of this type with the specified name.static EncryptedJwt.SupportedEncryption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static EncryptedJwt.SupportedEncryption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EncryptedJwt.SupportedEncryption c : EncryptedJwt.SupportedEncryption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncryptedJwt.SupportedEncryption valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<EncryptedJwt.SupportedEncryption>
-
-