Uses of Class
com.azure.security.keyvault.keys.cryptography.models.KeyWrapAlgorithm
-
Packages that use KeyWrapAlgorithm Package Description com.azure.security.keyvault.keys.cryptography Package containing classes for creatingCryptographyAsyncClientandCryptographyClientto perform cryptography operations.com.azure.security.keyvault.keys.cryptography.models Package containing classes used for representing output/results of encryption, decryption, signing, verifying, key wrapping and unwrapping operations. -
-
Uses of KeyWrapAlgorithm in com.azure.security.keyvault.keys.cryptography
Methods in com.azure.security.keyvault.keys.cryptography with parameters of type KeyWrapAlgorithm Modifier and Type Method Description Mono<UnwrapResult>CryptographyAsyncClient. unwrapKey(KeyWrapAlgorithm algorithm, byte[] encryptedKey)Unwraps a symmetric key using the configured key that was initially used for wrapping that key.UnwrapResultCryptographyClient. unwrapKey(KeyWrapAlgorithm algorithm, byte[] encryptedKey)Unwraps a symmetric key using the configured key that was initially used for wrapping that key.UnwrapResultCryptographyClient. unwrapKey(KeyWrapAlgorithm algorithm, byte[] encryptedKey, com.azure.core.util.Context context)Unwraps a symmetric key using the configured key that was initially used for wrapping that key.Mono<WrapResult>CryptographyAsyncClient. wrapKey(KeyWrapAlgorithm algorithm, byte[] key)Wraps a symmetric key using the configured key.WrapResultCryptographyClient. wrapKey(KeyWrapAlgorithm algorithm, byte[] key)Wraps a symmetric key using the configured key.WrapResultCryptographyClient. wrapKey(KeyWrapAlgorithm algorithm, byte[] key, com.azure.core.util.Context context)Wraps a symmetric key using the configured key. -
Uses of KeyWrapAlgorithm in com.azure.security.keyvault.keys.cryptography.models
Fields in com.azure.security.keyvault.keys.cryptography.models declared as KeyWrapAlgorithm Modifier and Type Field Description static KeyWrapAlgorithmKeyWrapAlgorithm. A128KWStatic value A128KW for KeyWrapAlgorithm.static KeyWrapAlgorithmKeyWrapAlgorithm. A192KWStatic value A192KW for KeyWrapAlgorithm.static KeyWrapAlgorithmKeyWrapAlgorithm. A256KWStatic value Unwrap Key for KeyWrapAlgorithm.static KeyWrapAlgorithmKeyWrapAlgorithm. RSA_OAEPStatic value RSA-OAEP for KeyWrapAlgorithm.static KeyWrapAlgorithmKeyWrapAlgorithm. RSA_OAEP_256Static value RSA-OAEP-256 for KeyWrapAlgorithm.static KeyWrapAlgorithmKeyWrapAlgorithm. RSA1_5Static value RSA1_5 for KeyWrapAlgorithm.Methods in com.azure.security.keyvault.keys.cryptography.models that return KeyWrapAlgorithm Modifier and Type Method Description static KeyWrapAlgorithmKeyWrapAlgorithm. fromString(String name)Creates or finds a KeyWrapAlgorithm from its string representation.KeyWrapAlgorithmUnwrapResult. getAlgorithm()Get the algorithm used for key wrap operation.KeyWrapAlgorithmWrapResult. getAlgorithm()Get the key wrap algorithm used to wrap the key content.Methods in com.azure.security.keyvault.keys.cryptography.models that return types with arguments of type KeyWrapAlgorithm Modifier and Type Method Description static Collection<KeyWrapAlgorithm>KeyWrapAlgorithm. values()Constructors in com.azure.security.keyvault.keys.cryptography.models with parameters of type KeyWrapAlgorithm Constructor Description UnwrapResult(byte[] key, KeyWrapAlgorithm algorithm, String keyId)Creates the instance of KeyUnwrap Result holding the unwrapped key content.WrapResult(byte[] encryptedKey, KeyWrapAlgorithm algorithm, String keyId)Creates the instance of KeyWrapResult holding the key wrap operation response details.
-