你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
AsyncKeyEncryptionKey Interface
public interface AsyncKeyEncryptionKey
The AsyncKeyEncryptionKey defines asynchronous methods for encrypting and decrypting keys, also known as key wrapping and unwrapping. It also supports signing and verifying data using the configured key.
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract Mono<String> |
getKeyId()
Retrieves the key identifier. |
abstract Mono<byte[]> |
unwrapKey(String algorithm, byte[] encryptedKey)
Decrypts the specified encrypted key using the specified algorithm. |
abstract Mono<byte[]> |
wrapKey(String algorithm, byte[] key)
Encrypts the specified key using the specified algorithm. |
Method Details
getKeyId
public abstract Mono
Retrieves the key identifier.
Returns:
unwrapKey
public abstract Mono
Decrypts the specified encrypted key using the specified algorithm.
Parameters:
Returns:
wrapKey
public abstract Mono
Encrypts the specified key using the specified algorithm.
Parameters:
Returns: