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

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

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

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

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

Methods in org.apache.cxf.rs.security.jose.jwe that return KeyAlgorithm
 KeyAlgorithm WrappedKeyDecryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm PbesHmacAesWrapKeyEncryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm PbesHmacAesWrapKeyDecryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm KeyEncryptionProvider.getAlgorithm()
           
 KeyAlgorithm KeyDecryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm EcdhAesWrapKeyEncryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm EcdhAesWrapKeyDecryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm DirectKeyEncryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm DirectKeyDecryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm AbstractWrapKeyEncryptionAlgorithm.getAlgorithm()
           
 KeyAlgorithm JweKeyProperties.getKeyAlgorithm()
           
 KeyAlgorithm AbstractJweEncryption.getKeyAlgorithm()
           
 KeyAlgorithm AbstractJweDecryption.getKeyAlgorithm()
           
 KeyAlgorithm JweHeaders.getKeyEncryptionAlgorithmEnum()
           
 

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

Constructors in org.apache.cxf.rs.security.jose.jwe with parameters of type KeyAlgorithm
AbstractWrapKeyEncryptionAlgorithm(Key key, KeyAlgorithm jweAlgo, boolean wrap, Set<String> supportedAlgorithms)
           
AbstractWrapKeyEncryptionAlgorithm(Key key, KeyAlgorithm jweAlgo, Set<String> supportedAlgorithms)
           
AesGcmWrapKeyDecryptionAlgorithm(byte[] secretKey, KeyAlgorithm supportedAlgo)
           
AesGcmWrapKeyDecryptionAlgorithm(SecretKey secretKey, KeyAlgorithm supportedAlgo)
           
AesGcmWrapKeyDecryptionAlgorithm(String encodedKey, KeyAlgorithm supportedAlgo)
           
AesGcmWrapKeyEncryptionAlgorithm(byte[] keyBytes, KeyAlgorithm keyAlgoJwt)
           
AesGcmWrapKeyEncryptionAlgorithm(SecretKey key, KeyAlgorithm keyAlgoJwt)
           
AesGcmWrapKeyEncryptionAlgorithm(String encodedKey, KeyAlgorithm keyAlgoJwt)
           
AesWrapKeyDecryptionAlgorithm(byte[] secretKey, KeyAlgorithm supportedAlgo)
           
AesWrapKeyDecryptionAlgorithm(SecretKey secretKey, KeyAlgorithm supportedAlgo)
           
AesWrapKeyDecryptionAlgorithm(String encodedKey, KeyAlgorithm supportedAlgo)
           
AesWrapKeyEncryptionAlgorithm(byte[] keyBytes, KeyAlgorithm keyAlgoJwt)
           
AesWrapKeyEncryptionAlgorithm(SecretKey key, KeyAlgorithm keyAlgoJwt)
           
AesWrapKeyEncryptionAlgorithm(String encodedKey, KeyAlgorithm keyAlgoJwt)
           
EcdhAesWrapKeyDecryptionAlgorithm(ECPrivateKey key, KeyAlgorithm algo)
           
EcdhAesWrapKeyEncryptionAlgorithm(ECPublicKey peerPublicKey, String curve, KeyAlgorithm keyAlgo)
           
EcdhAesWrapKeyEncryptionAlgorithm(ECPublicKey peerPublicKey, String curve, String apuString, String apvString, KeyAlgorithm keyAlgo)
           
PbesHmacAesWrapKeyDecryptionAlgorithm(byte[] password, KeyAlgorithm algo, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyDecryptionAlgorithm(char[] password, KeyAlgorithm algo, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyDecryptionAlgorithm(String password, KeyAlgorithm algo, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(byte[] password, int pbesCount, KeyAlgorithm keyAlgoJwt, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(byte[] password, KeyAlgorithm keyAlgoJwt)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(char[] password, int pbesCount, KeyAlgorithm keyAlgoJwt, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(char[] password, KeyAlgorithm keyAlgoJwt)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(String password, int pbesCount, KeyAlgorithm keyAlgoJwt, boolean hashLargePasswords)
           
PbesHmacAesWrapKeyEncryptionAlgorithm(String password, KeyAlgorithm keyAlgoJwt)
           
RSAKeyDecryptionAlgorithm(RSAPrivateKey privateKey, KeyAlgorithm supportedAlgo)
           
RSAKeyDecryptionAlgorithm(RSAPrivateKey privateKey, KeyAlgorithm supportedAlgo, boolean unwrap)
           
RSAKeyEncryptionAlgorithm(RSAPublicKey publicKey, KeyAlgorithm jweAlgo)
           
RSAKeyEncryptionAlgorithm(RSAPublicKey publicKey, KeyAlgorithm jweAlgo, boolean wrap)
           
WrappedKeyDecryptionAlgorithm(Key cekDecryptionKey, KeyAlgorithm supportedAlgo)
           
WrappedKeyDecryptionAlgorithm(Key cekDecryptionKey, KeyAlgorithm supportedAlgo, boolean unwrap)
           
 



Apache CXF