Package org.forgerock.json.jose.jwe
Enum Class EncryptionMethod
- All Implemented Interfaces:
Serializable
,Comparable<EncryptionMethod>
,Constable
An Enum of the possible encryption methods that can be used when encrypting a JWT.
- Since:
- 2.0.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAES encryption in CBC mode with PKCS5 Padding and a 128 bit length, AES encryption for CEK, HMAC using SHA-256 hash algorithm for authentication tag.AES encryption in Galois Counter Mode (GCM) with a 128 bit key length.AES encryption in CBC mode with PKCS5 Padding and a 192 bit length, AES encryption for CEK, HMAC using SHA-384 hash algorithm for the authentication tag.AES encryption in Galois Counter Mode (GCM) with a 192 bit key length.AES encryption in CBC mode with PKCS5 Padding and a 256 bit length, AES encryption for CEK, HMAC using SHA-256 hash algorithm for authentication tag.AES encryption in Galois Counter Mode (GCM) with a 256 bit key length.The ChaCha20-Poly1305 algorithm as described in RFC 7539.The XChaCha20-Poly1305 algorithm as used in libsodium, Wireguard, etc. -
Method Summary
Modifier and TypeMethodDescriptionGets the Java Cryptographic algorithm name for the algorithm that will create the Content Encryption Key (CEK).Returns the JWE standard encryption method name for this encryption method.int
Gets the number of octets in each of the CEK and MAC key.int
Gets the bit length of the Content Encryption Key (CEK).Gets the Java Cryptographic algorithm name for the algorithm that will generate the MAC key.getName()
Gets the full name of the encryption method.Gets the Java Cryptographic algorithm name for the algorithm that will eb used to encrypt the plaintext.static EncryptionMethod
parseMethod
(String method) Parses the given algorithm string to find the matching EncryptionMethod enum constant.toString()
Turns the EncryptionMethod constant into a JSON value string.static EncryptionMethod
Returns the enum constant of this class with the specified name.static EncryptionMethod[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
A128CBC_HS256
AES encryption in CBC mode with PKCS5 Padding and a 128 bit length, AES encryption for CEK, HMAC using SHA-256 hash algorithm for authentication tag. -
A192CBC_HS384
AES encryption in CBC mode with PKCS5 Padding and a 192 bit length, AES encryption for CEK, HMAC using SHA-384 hash algorithm for the authentication tag. -
A256CBC_HS512
AES encryption in CBC mode with PKCS5 Padding and a 256 bit length, AES encryption for CEK, HMAC using SHA-256 hash algorithm for authentication tag. -
A128GCM
AES encryption in Galois Counter Mode (GCM) with a 128 bit key length. -
A192GCM
AES encryption in Galois Counter Mode (GCM) with a 192 bit key length. -
A256GCM
AES encryption in Galois Counter Mode (GCM) with a 256 bit key length. -
CC20_P1305
The ChaCha20-Poly1305 algorithm as described in RFC 7539. This takes a 256-bit key, a 96-bit nonce, and produces a ciphertext and a 128-bit authentication tag. -
XC20_P1305
The XChaCha20-Poly1305 algorithm as used in libsodium, Wireguard, etc. This is a variant ofCC20_P1305
that takes a 192-bit random nonce and uses the first 128-bits to derive a unique per-message key. The remaining bytes of the nonce and the fresh key are then used withCC20_P1305
. This allows using random nonces, which are much easier to generate safely, for encrypting up to 280 messages with the same key.
-
-
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
-
getName
Gets the full name of the encryption method.- Returns:
- The name of the encryption method.
-
getTransformation
Gets the Java Cryptographic algorithm name for the algorithm that will eb used to encrypt the plaintext.- Returns:
- The transformation algorithm.
-
getMacAlgorithm
Gets the Java Cryptographic algorithm name for the algorithm that will generate the MAC key.- Returns:
- The mac algorithm.
-
getEncryptionAlgorithm
Gets the Java Cryptographic algorithm name for the algorithm that will create the Content Encryption Key (CEK).- Returns:
- The encryption algorithm.
-
getKeyOffset
public int getKeyOffset()Gets the number of octets in each of the CEK and MAC key.- Returns:
- The Key Offset.
-
getKeySize
public int getKeySize()Gets the bit length of the Content Encryption Key (CEK).- Returns:
- The key size.
-
parseMethod
Parses the given algorithm string to find the matching EncryptionMethod enum constant.- Parameters:
method
- The encryption method.- Returns:
- The EncryptionMethod enum.
-
getJweStandardName
Returns the JWE standard encryption method name for this encryption method. For example A128GCM or A256CBC-HS512.- Returns:
- the standard JWE name for this encryption method.
-
toString
Turns the EncryptionMethod constant into a JSON value string.- Overrides:
toString
in classEnum<EncryptionMethod>
- Returns:
-