IKeyProvider Interface

Defines the behavior and data of classes that provide encryption keys

Definition

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.2.9017.0
C#
public interface IKeyProvider

Properties

KeyVaultUrl The URL of the Azure Key Vault to use
ThrowOnFailure If true, exceptions thrown during the normal course of operations will be re-thrown

Methods

CreateKeyAsync Creates and stores a new key in Key Vault. The create key operation can be used to create any key type in Azure Key Vault. If the named key already exists, Azure Key Vault creates a new version of the key. This operation requires the keys/create permission.
DeleteKeyAsync Deletes a key from Key Vault.
GetKeyAsync Gets the public part of a stored key

See Also