RecipientInfo Event
Fired for each recipient certificate of the encrypted message.
Syntax
smime.on('RecipientInfo', [callback])
Callback
The 'callback' is called when the 'RecipientInfo' event is emited.
function(e){ }
The argument 'e' has the following properties:
e.issuer e.serialNumber e.encryptionAlgorithm
Remarks
When GetRecipientInfo has been called on a valid encrypted message, this event will fire for each recipient certificate that the message has been encrypted for.
It will contain information about the Issuer and the SerialNumber of the recipient cert.
The EncryptionAlgorithm will contain the algorithm used to encrypt the message.