VerificationStatus Event
Fired after verification of the signed message.
Syntax
typedef void __fastcall (__closure *TipgOpenPGPVerificationStatusEvent)(System::TObject* Sender, TipgOpenPGPVerificationStatusEventParams *e);__property TipgOpenPGPVerificationStatusEvent OnVerificationStatus = {read=FOnVerificationStatus, write=FOnVerificationStatus};
typedef struct {
String KeyId;
int Status;
} TipgOpenPGPVerificationStatusEventParams;
Remarks
This event fires when VerifySignature or DecryptAndVerifySignature is called. It provides information about the result.
KeyId is the Id of the key used to sign the message. It is the hex-encoded, 4-or 8-byte Id of the key. It is the same as the last 4 or 8 bytes of the Fingerprint. For instance:
BF52A0AB
Status holds the result of the operation. Possible values are:
0 | Verification succeeded |
1 | Verification failed |
2 | The required key could not be found |