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

VerificationStatus Event

Fired after verification of the signed message.

Syntax

[VB.NET]
Public Event OnVerificationStatus As OnVerificationStatusHandler
[C#]
public event OnVerificationStatusHandler OnVerificationStatus;

public delegate void OnVerificationStatusHandler(object sender, OpenpgpVerificationStatusEventArgs e);

class OpenpgpVerificationStatusEventArgs : EventArgs {
  string KeyId {get;}
  int Status {get;}
}

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:

0Verification succeeded
1Verification failed
2The required key could not be found

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