SignerInfo Event
Fires with information about the signature.
Syntax
type TSignerInfoEvent = procedure ( Sender: TObject; const KeyId: String; const Algorithm: String ) of Object;
property OnSignerInfo: TSignerInfoEvent read FOnSignerInfo write FOnSignerInfo;
Remarks
This event fires with information about the signature. This may be used to help identify the Key or Certificate to load in order to verify the signature. This event fires when Verify or Parse is called.
KeyId is the Id of the key as supplied by the signer that created the message. This may be empty.
Algorithm is the signature algorithm used to sign the message.