| Package | Description |
|---|---|
| com.microsoft.azure.keyvault |
This package contains the classes for KeyVaultClient.
|
| Modifier and Type | Method and Description |
|---|---|
KeyOperationResult |
KeyVaultClient.decrypt(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value)
Decrypts a single block of encrypted data.
|
KeyOperationResult |
KeyVaultClient.encrypt(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value)
Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a key vault.
|
KeyOperationResult |
KeyVaultClient.sign(String keyIdentifier,
JsonWebKeySignatureAlgorithm algorithm,
byte[] value)
Creates a signature from a digest using the specified key.
|
KeyOperationResult |
KeyVaultClient.unwrapKey(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value)
Unwraps a symmetric key using the specified key in the vault that has initially been used for wrapping the key.
|
KeyOperationResult |
KeyVaultClient.wrapKey(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value)
Wraps a symmetric key using the specified key.
|
| Modifier and Type | Method and Description |
|---|---|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.decryptAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Decrypts a single block of encrypted data.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.encryptAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a key vault.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.signAsync(String keyIdentifier,
JsonWebKeySignatureAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Creates a signature from a digest using the specified key.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.unwrapKeyAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Unwraps a symmetric key using the specified key in the vault that has initially been used for wrapping the key.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.wrapKeyAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Wraps a symmetric key using the specified key.
|
| Modifier and Type | Method and Description |
|---|---|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.decryptAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Decrypts a single block of encrypted data.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.encryptAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a key vault.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.signAsync(String keyIdentifier,
JsonWebKeySignatureAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Creates a signature from a digest using the specified key.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.unwrapKeyAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Unwraps a symmetric key using the specified key in the vault that has initially been used for wrapping the key.
|
com.microsoft.rest.ServiceFuture<KeyOperationResult> |
KeyVaultClient.wrapKeyAsync(String keyIdentifier,
JsonWebKeyEncryptionAlgorithm algorithm,
byte[] value,
com.microsoft.rest.ServiceCallback<KeyOperationResult> serviceCallback)
Wraps a symmetric key using the specified key.
|
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/