IKeyEncryptionKey Interface

Definition

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.

Applies to