Data.DBXCommon.TCertificate.Verify

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.DBXCommon.pas
Data.DBXCommon.hpp
Unit: Data.DBXCommon
Parent: TCertificate

Delphi

function Verify(key: TPublicKey): Boolean; overload; virtual; abstract;

C++

virtual bool __fastcall Verify(TPublicKey* key) = 0 /* overload */;

Description

Virtual abstract method to be implemented in child classes.

The Verify virtual abstract method is intended to be implemented in child classes to verify that the certificate was signed using the private key that corresponds to the specified public key.

Note: In any further implementation, Verify should return True if verified, False otherwise.

See Also