SqlColumnEncryptionCertificateStoreProvider.VerifyColumnMasterKeyMetadata Method
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.
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 siognature.
Returns
A Boolean value that indicates if the master key metadata can be verified based on the provided signature.