Click or drag to resize

KeyVaultCryptoProviderVerify Method

Verifies the signature on a block of data with a key stored in the Azure Key Vault using either the RSA-512 or ES-256K algorithm as appropriate for the key.

Namespace: InnerDrive.Azure
Assembly: InnerDrive.Azure (in InnerDrive.Azure.dll) Version: 5.0.8475.0
Syntax
C#
public Task<bool> Verify(
	string data,
	string keyName,
	string signature
)

Parameters

data  String
The data to sign in Base-64 format
keyName  String
The name of the key in your Key Vault to use
signature  String
The Base-64 encoded signature to verify

Return Value

TaskBoolean
A Base-64 encoded string containing the signed data

Implements

ICryptoProviderVerify(String, String, String)
Remarks
This version only supports RSA and EC keys.
See Also