Uses of Class
org.apache.cxf.rt.security.crypto.KeyProperties
Packages that use KeyProperties
Package
Description
-
Uses of KeyProperties in org.apache.cxf.rs.security.jose.jwe
Constructors in org.apache.cxf.rs.security.jose.jwe with parameters of type KeyPropertiesModifierConstructorDescriptionJweEncryptionOutput(Cipher cipher, JweHeaders headers, byte[] encryptedContentEncryptionKey, byte[] iv, AuthenticationTagProducer authTagProducer, KeyProperties keyProps, byte[] encryptedContent, byte[] authTag) -
Uses of KeyProperties in org.apache.cxf.rs.security.oauth2.grants.code
Constructors in org.apache.cxf.rs.security.oauth2.grants.code with parameters of type KeyProperties -
Uses of KeyProperties in org.apache.cxf.rs.security.oauth2.provider
Constructors in org.apache.cxf.rs.security.oauth2.provider with parameters of type KeyProperties -
Uses of KeyProperties in org.apache.cxf.rs.security.oauth2.utils.crypto
Methods in org.apache.cxf.rs.security.oauth2.utils.crypto with parameters of type KeyPropertiesModifier and TypeMethodDescriptionstatic ServerAccessTokenModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props) static ServerAccessTokenModelEncryptionSupport.decryptAccessToken(OAuthDataProvider provider, String encodedData, Key secretKey, KeyProperties props) static ClientModelEncryptionSupport.decryptClient(String encodedSequence, String encodedSecretKey, KeyProperties props) static ClientModelEncryptionSupport.decryptClient(String encodedData, Key secretKey, KeyProperties props) static ServerAuthorizationCodeGrantModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props) static ServerAuthorizationCodeGrantModelEncryptionSupport.decryptCodeGrant(OAuthDataProvider provider, String encodedData, Key key, KeyProperties props) static RefreshTokenModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedToken, String encodedSecretKey, KeyProperties props) static RefreshTokenModelEncryptionSupport.decryptRefreshToken(OAuthDataProvider provider, String encodedData, Key key, KeyProperties props) static StringModelEncryptionSupport.encryptAccessToken(ServerAccessToken token, Key secretKey, KeyProperties props) static StringModelEncryptionSupport.encryptClient(Client client, Key secretKey, KeyProperties props) static StringModelEncryptionSupport.encryptCodeGrant(ServerAuthorizationCodeGrant grant, Key secretKey, KeyProperties props) static StringModelEncryptionSupport.encryptRefreshToken(RefreshToken token, Key secretKey, KeyProperties props) -
Uses of KeyProperties in org.apache.cxf.rt.security.crypto
Methods in org.apache.cxf.rt.security.crypto with parameters of type KeyPropertiesModifier and TypeMethodDescriptionstatic byte[]CryptoUtils.decryptBytes(byte[] bytes, Key secretKey, KeyProperties keyProps) static SecretKeyCryptoUtils.decryptSecretKey(String encodedEncryptedSecretKey, String secretKeyAlgo, KeyProperties props, PrivateKey privateKey) static StringCryptoUtils.decryptSequence(String encodedData, String encodedSecretKey, KeyProperties props) static StringCryptoUtils.decryptSequence(String encodedData, Key secretKey, KeyProperties props) static byte[]CryptoUtils.encryptBytes(byte[] bytes, Key secretKey, KeyProperties keyProps) static StringCryptoUtils.encryptSecretKey(SecretKey secretKey, PublicKey publicKey, KeyProperties props) static StringCryptoUtils.encryptSequence(String sequence, Key secretKey, KeyProperties keyProps) static SecretKeyCryptoUtils.getSecretKey(KeyProperties props) static CipherCryptoUtils.initCipher(Key secretKey, KeyProperties keyProps, int mode) static KeyCryptoUtils.unwrapKey(byte[] wrappedBytes, String wrappedKeyAlgo, Key unwrapperKey, KeyProperties keyProps, int wrappedKeyType) static SecretKeyCryptoUtils.unwrapSecretKey(byte[] wrappedBytes, String wrappedKeyAlgo, Key unwrapperKey, KeyProperties keyProps) static byte[]CryptoUtils.wrapSecretKey(byte[] keyBytes, String keyAlgo, Key wrapperKey, KeyProperties wrapperKeyProps) static byte[]CryptoUtils.wrapSecretKey(Key secretKey, Key wrapperKey, KeyProperties keyProps)