RecipientInfo Event
Fired with information about the recipient key of the encrypted message.
Syntax
type TRecipientInfoEvent = procedure ( Sender: TObject; const KeyId: String; const Algorithm: String ) of Object;
property OnRecipientInfo: TRecipientInfoEvent read FOnRecipientInfo write FOnRecipientInfo;
Remarks
This event fires with information about the key used to encrypt the data. This may be used to help identify the Key or Certificate to load in order to decrypt the message. This event fires when Decrypt or Parse is called.
KeyId is the Id of the key as supplied by the entity that created the message. This may be empty.
Algorithm is the encryption algorithm used to encrypt the data.