Uses of Class
com.nimbusds.jose.EncryptionMethod

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 ReadOnlyJWEHeader.getEncryptionMethod()
          Gets the encryption method (enc) parameter.
 EncryptionMethod JWEHeader.getEncryptionMethod()
           
static EncryptionMethod EncryptionMethod.parse(java.lang.String s)
          Parses an encryption method from the specified string.
 

Methods in com.nimbusds.jose that return types with arguments of type EncryptionMethod
 java.util.Set<EncryptionMethod> JWEHeaderFilter.getAcceptedEncryptionMethods()
          Gets the names of the accepted encryption methods.
 java.util.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(java.util.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.
 



Copyright © 2013 NimbusDS. All Rights Reserved.