IKeyEncryptionKey Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A key which is used to encrypt, or wrap, another key.
public interface IKeyEncryptionKey
type IKeyEncryptionKey = interface
Public Interface IKeyEncryptionKey
- Derived
Properties
| KeyId |
The Id of the key used to perform cryptographic operations for the client. |
Methods
| UnwrapKey(String, ReadOnlyMemory<Byte>, CancellationToken) |
Decrypts the specified encrypted key using the specified algorithm. |
| UnwrapKeyAsync(String, ReadOnlyMemory<Byte>, CancellationToken) |
Decrypts the specified encrypted key using the specified algorithm. |
| WrapKey(String, ReadOnlyMemory<Byte>, CancellationToken) |
Encrypts the specified key using the specified algorithm. |
| WrapKeyAsync(String, ReadOnlyMemory<Byte>, CancellationToken) |
Encrypts the specified key using the specified algorithm. |