IPWorks OpenPGP 2020 Qt Edition

Questions / Feedback?

SignatureInfo Event

Fired during verification of the signed message.

Syntax

class PPOPSignatureInfoEventParams {
public:
  const QString &KeyId();
  const QString &SigningAlgorithm();
  const QString &PublicKeyAlgorithm();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void SignatureInfo(PPOPSignatureInfoEventParams *e);
// Or, subclass PPOP and override this emitter function. virtual int FireSignatureInfo(PPOPSignatureInfoEventParams *e) {...}

Remarks

This event fires when the VerifySignature or DecryptAndVerifySignature method is called. It provides information about the signature of the message.

KeyId is the Id of the key used to sign the message. If a subkey was used to sign 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 the SignerKey* properties. This property can be set from within this event as this event fires directly before the verification process begins.

SigningAlgorithm describes the hash algorithm used when the message was originally signed. This value is applicable only to the message signature, not the key used to sign the message. Possible values are:

  • SHA1
  • SHA256
  • SHA384
  • SHA512
  • SHA224
  • MD5

PublicKeyAlgorithm is the algorithm of the public key used to sign the message. Possible values are:

  • RSA
  • DSA
  • ECDSA
  • EdDSA

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks OpenPGP 2020 Qt Edition - Version 20.0 [Build 8249]