Uses of Interface
org.apache.cxf.rs.security.jose.jwe.KeyEncryptionAlgorithm

Packages that use KeyEncryptionAlgorithm
org.apache.cxf.rs.security.jose.jwe   
 

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

Classes in org.apache.cxf.rs.security.jose.jwe that implement KeyEncryptionAlgorithm
 class AbstractWrapKeyEncryptionAlgorithm
           
 class AesGcmWrapKeyEncryptionAlgorithm
           
 class AesWrapKeyEncryptionAlgorithm
           
protected static class DirectKeyJweEncryption.DirectKeyEncryptionAlgorithm
           
 class EcdhAesWrapKeyEncryptionAlgorithm
           
protected static class EcdhDirectKeyJweEncryption.EcdhDirectKeyEncryptionAlgorithm
           
 class PbesHmacAesWrapKeyEncryptionAlgorithm
           
 class RSAKeyEncryptionAlgorithm
           
 

Methods in org.apache.cxf.rs.security.jose.jwe that return KeyEncryptionAlgorithm
protected  KeyEncryptionAlgorithm AbstractJweEncryption.getKeyEncryptionAlgo()
           
static KeyEncryptionAlgorithm JweUtils.getKeyEncryptionAlgorithm(JsonWebKey jwk)
           
static KeyEncryptionAlgorithm JweUtils.getKeyEncryptionAlgorithm(JsonWebKey jwk, String defaultAlgorithm)
           
static KeyEncryptionAlgorithm JweUtils.getRSAKeyEncryptionAlgorithm(RSAPublicKey key, String algo)
           
static KeyEncryptionAlgorithm JweUtils.getSecretKeyEncryptionAlgorithm(SecretKey key, String algo)
           
 

Methods in org.apache.cxf.rs.security.jose.jwe with parameters of type KeyEncryptionAlgorithm
static JweEncryptionProvider JweUtils.createJweEncryptionProvider(KeyEncryptionAlgorithm keyEncryptionProvider, JweHeaders headers)
           
static JweEncryptionProvider JweUtils.createJweEncryptionProvider(KeyEncryptionAlgorithm keyEncryptionProvider, String contentEncryptionAlgo, String compression)
           
 

Constructors in org.apache.cxf.rs.security.jose.jwe with parameters of type KeyEncryptionAlgorithm
AbstractJweEncryption(ContentEncryptionAlgorithm contentEncryptionAlgo, KeyEncryptionAlgorithm keyEncryptionAlgo)
           
AesCbcHmacJweEncryption(String cekAlgoJwt, byte[] cek, byte[] iv, KeyEncryptionAlgorithm keyEncryptionAlgorithm)
           
AesCbcHmacJweEncryption(String cekAlgoJwt, KeyEncryptionAlgorithm keyEncryptionAlgorithm)
           
WrappedKeyJweEncryption(KeyEncryptionAlgorithm keyEncryptionAlgorithm, ContentEncryptionAlgorithm contentEncryptionAlgo)
           
 



Apache CXF