IP*Works! Encrypt V9 - Online Help
IP*Works! Encrypt V9
Questions / Feedback?

RecipientInfo Event

Fired for each recipient key of the encrypted message.

Syntax

[VB.NET]
Public Event OnRecipientInfo As OnRecipientInfoHandler
[C#]
public event OnRecipientInfoHandler OnRecipientInfo;

public delegate void OnRecipientInfoHandler(object sender, OpenpgpRecipientInfoEventArgs e);

class OpenpgpRecipientInfoEventArgs : EventArgs {
  string KeyId {get;}
  string PublicKeyAlgorithm {get;}
}

Remarks

This event fires when the Decrypt or DecryptAndVerifySignature method is called.

KeyId is the Id of the key used to encrypt the message. If a subkey was used to encrypt the message this will be the Id of that subkey. 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
This can be used to identify the correct key to specify in Keys. Keys can be set from within this event as this event fires directly before the decryption process begins.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 9.0.6240.0