SqlColumnEncryptionCngProvider.VerifyColumnMasterKeyMetadata Method

Definition

This function must be implemented by the corresponding Key Store providers. This function should use an asymmetric key identified by a key path and verify the masterkey metadata consisting of (masterKeyPath, allowEnclaveComputations, providerName).

public:
 override bool VerifyColumnMasterKeyMetadata(System::String ^ masterKeyPath, bool allowEnclaveComputations, cli::array <System::Byte> ^ signature);
public override bool VerifyColumnMasterKeyMetadata (string masterKeyPath, bool allowEnclaveComputations, byte[] signature);
override this.VerifyColumnMasterKeyMetadata : string * bool * byte[] -> bool
Public Overrides Function VerifyColumnMasterKeyMetadata (masterKeyPath As String, allowEnclaveComputations As Boolean, signature As Byte()) As Boolean

Parameters

masterKeyPath
String

The complete path of an asymmetric key. The path format is specific to a key store provider.

allowEnclaveComputations
Boolean

A Boolean that indicates if this key can be sent to the trusted enclave.

signature
Byte[]

The master key metadata signature.

Returns

A Boolean that indicates if the master key metadata can be verified based on the provided signature.

Applies to