Data.DBXCommon.TCertificate.Verify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
function public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon TCertificate

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