IP*Works! OpenPGP 2016 C++ Edition
IP*Works! OpenPGP 2016 C++ Edition
Questions / Feedback?

SignatureInfo Event

Fired during verification of the signed message.

Syntax

 virtual int FireSignatureInfo(OpenPGPSignatureInfoEventParams *e);

 
typedef struct {
char* KeyId;
char* SigningAlgorithm;
char* PublicKeyAlgorithm;
int reserved;
} OpenPGPSignatureInfoEventParams;

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", and "MD5".

PublicKeyAlgorithm is the algorithm of the public key used to sign the message. Possible values are "RSA" and "DSA".

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
IP*Works! OpenPGP 2016 C++ Edition - Version 16.0 [Build 7239]