|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use EncryptionMethod | |
|---|---|
| com.nimbusds.jose | Javascript Object Signing and Encryption (JOSE) classes. |
| Uses of EncryptionMethod in com.nimbusds.jose |
|---|
| Fields in com.nimbusds.jose declared as EncryptionMethod | |
|---|---|
static EncryptionMethod |
EncryptionMethod.A128CBC_HS256
Composite Authenticated Encryption algorithm using Advanced Encryption Standard (AES) in Cipher Block Chaining (CBC) mode with PKCS #5 padding (NIST.800-38A) with an integrity calculation using HMAC SHA-256, using a 256 bit CMK (and a 128 bit CEK) (required). |
static EncryptionMethod |
EncryptionMethod.A128GCM
Advanced Encryption Standard (AES) in Galois/Counter Mode (GCM) (NIST.800-38D) using 128 bit keys (recommended). |
static EncryptionMethod |
EncryptionMethod.A256CBC_HS512
Composite Authenticated Encryption algorithm using Advanced Encryption Standard (AES) in Cipher Block Chaining (CBC) mode with PKCS #5 padding (NIST.800-38A) with an integrity calculation using HMAC SHA-512, using a 512 bit CMK (and a 256 bit CEK) (required). |
static EncryptionMethod |
EncryptionMethod.A256GCM
Advanced Encryption Standard (AES) in Galois/Counter Mode (GCM) (NIST.800-38D) using 256 bit keys (recommended). |
| Methods in com.nimbusds.jose that return EncryptionMethod | |
|---|---|
EncryptionMethod |
JWEHeader.getEncryptionMethod()
|
EncryptionMethod |
ReadOnlyJWEHeader.getEncryptionMethod()
Gets the encryption method ( enc) parameter. |
static EncryptionMethod |
EncryptionMethod.parse(String s)
Parses an encryption method from the specified string. |
| Methods in com.nimbusds.jose that return types with arguments of type EncryptionMethod | |
|---|---|
Set<EncryptionMethod> |
JWEHeaderFilter.getAcceptedEncryptionMethods()
Gets the names of the accepted encryption methods. |
Set<EncryptionMethod> |
JWEAlgorithmProvider.supportedEncryptionMethods()
Returns the names of the supported encryption methods. |
| Method parameters in com.nimbusds.jose with type arguments of type EncryptionMethod | |
|---|---|
void |
JWEHeaderFilter.setAcceptedEncryptionMethods(Set<EncryptionMethod> acceptedEncs)
Sets the names of the accepted encryption methods. |
| Constructors in com.nimbusds.jose with parameters of type EncryptionMethod | |
|---|---|
JWEHeader(JWEAlgorithm alg,
EncryptionMethod enc)
Creates a new JSON Web Encryption (JWE) header. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||