| Package | Description |
|---|---|
| com.microsoft.azure.keyvault |
This package contains the Azure Key Vault client interface and associated configuration and utility classes.
|
| Modifier and Type | Method and Description |
|---|---|
Future<KeyOperationResult> |
KeyVaultClientImpl.decryptAsync(String keyIdentifier,
String algorithm,
byte[] cipherText) |
Future<KeyOperationResult> |
KeyVaultClient.decryptAsync(String keyIdentifier,
String algorithm,
byte[] cipherText)
Performs a DECRYPT operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.encryptAsync(String keyIdentifier,
String algorithm,
byte[] plainText) |
Future<KeyOperationResult> |
KeyVaultClient.encryptAsync(String keyIdentifier,
String algorithm,
byte[] plainText)
Performs an ENCRYPT operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.encryptAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] plainText) |
Future<KeyOperationResult> |
KeyVaultClient.encryptAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] plainText)
Performs an ENCRYPT operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.signAsync(String keyIdentifier,
String algorithm,
byte[] digest) |
Future<KeyOperationResult> |
KeyVaultClient.signAsync(String keyIdentifier,
String algorithm,
byte[] digest)
Performs a SIGN operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.signAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] digest) |
Future<KeyOperationResult> |
KeyVaultClient.signAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] digest)
Performs a SIGN operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.unwrapKeyAsync(String keyIdentifier,
String algorithm,
byte[] wrappedKey) |
Future<KeyOperationResult> |
KeyVaultClient.unwrapKeyAsync(String keyIdentifier,
String algorithm,
byte[] wrappedKey)
Performs am UNWRAPKEY operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.wrapKeyAsync(String keyIdentifier,
String algorithm,
byte[] key) |
Future<KeyOperationResult> |
KeyVaultClient.wrapKeyAsync(String keyIdentifier,
String algorithm,
byte[] key)
Performs a WRAPKEY operation using the specified key.
|
Future<KeyOperationResult> |
KeyVaultClientImpl.wrapKeyAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] key) |
Future<KeyOperationResult> |
KeyVaultClient.wrapKeyAsync(String vault,
String keyName,
String keyVersion,
String algorithm,
byte[] key)
Performs a WRAPKEY operation using the specified key.
|
/**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/