Uses of Class
org.apache.cxf.rs.security.jose.jwa.ContentAlgorithm

Packages that use ContentAlgorithm
org.apache.cxf.rs.security.jose.jwa   
org.apache.cxf.rs.security.jose.jwe   
 

Uses of ContentAlgorithm in org.apache.cxf.rs.security.jose.jwa
 

Methods in org.apache.cxf.rs.security.jose.jwa that return ContentAlgorithm
static ContentAlgorithm ContentAlgorithm.getAlgorithm(String algo)
           
static ContentAlgorithm ContentAlgorithm.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ContentAlgorithm[] ContentAlgorithm.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of ContentAlgorithm in org.apache.cxf.rs.security.jose.jwe
 

Methods in org.apache.cxf.rs.security.jose.jwe that return ContentAlgorithm
 ContentAlgorithm ContentEncryptionCipherProperties.getAlgorithm()
           
 ContentAlgorithm AbstractContentEncryptionCipherProperties.getAlgorithm()
           
 ContentAlgorithm JweKeyProperties.getContentAlgorithm()
           
 ContentAlgorithm AbstractJweEncryption.getContentAlgorithm()
           
 ContentAlgorithm AbstractJweDecryption.getContentAlgorithm()
           
 ContentAlgorithm JweHeaders.getContentEncryptionAlgorithmEnum()
           
 

Methods in org.apache.cxf.rs.security.jose.jwe with parameters of type ContentAlgorithm
 void JweHeaders.setContentEncryptionAlgorithm(ContentAlgorithm algo)
           
 

Constructors in org.apache.cxf.rs.security.jose.jwe with parameters of type ContentAlgorithm
AbstractContentEncryptionAlgorithm(byte[] cek, byte[] iv, ContentAlgorithm algo)
           
AbstractContentEncryptionCipherProperties(ContentAlgorithm algo)
           
AesCbcHmacJweDecryption(KeyDecryptionAlgorithm keyDecryptionAlgo, ContentAlgorithm supportedAlgo)
           
AesCbcHmacJweEncryption(ContentAlgorithm cekAlgoJwt, byte[] cek, byte[] iv, KeyEncryptionProvider keyEncryptionAlgorithm)
           
AesCbcHmacJweEncryption(ContentAlgorithm cekAlgoJwt, KeyEncryptionProvider keyEncryptionAlgorithm)
           
AesGcmContentDecryptionAlgorithm(ContentAlgorithm supportedAlgo)
           
AesGcmContentEncryptionAlgorithm(byte[] cek, byte[] iv, ContentAlgorithm algo)
           
AesGcmContentEncryptionAlgorithm(ContentAlgorithm algo)
           
AesGcmContentEncryptionAlgorithm(SecretKey key, byte[] iv, ContentAlgorithm algo)
           
AesGcmContentEncryptionAlgorithm(String encodedCek, String encodedIv, ContentAlgorithm algo)
           
EcdhDirectKeyJweDecryption(ECPrivateKey privateKey, ContentAlgorithm supportedCtAlgo)
           
EcdhDirectKeyJweEncryption.EcdhAesGcmContentEncryptionAlgorithm(ECPublicKey peerPublicKey, String curve, String apuString, String apvString, ContentAlgorithm ctAlgo)
           
EcdhDirectKeyJweEncryption(ECPublicKey peerPublicKey, String curve, ContentAlgorithm ctAlgo)
           
EcdhDirectKeyJweEncryption(ECPublicKey peerPublicKey, String curve, String apuString, String apvString, ContentAlgorithm ctAlgo)
           
 



Apache CXF