IPWorks Encrypt 2020 Python Edition

Questions / Feedback?

on_signer_cert_info Event

Fired during verification of the signed message.

Syntax

class SMIMESignerCertInfoEventParams(object):
  @property
  def issuer() -> str: ...
  @property
  def serial_number() -> str: ...
  @property
  def subject_key_identifier() -> str: ...
  @property
  def cert_encoded() -> bytes: ...

# In class SMIME:
@property
def on_signer_cert_info() -> Callable[[SMIMESignerCertInfoEventParams], None]: ...
@on_signer_cert_info.setter
def on_signer_cert_info(event_hook: Callable[[SMIMESignerCertInfoEventParams], None]) -> None: ...

Remarks

During verification, this event will be raised while parsing the signer's certificate information. The parameters which are populated depends on the options used when the message was originally signed. This information may be used to select the correct certificate for signer_cert in order to verify the signature. The following parameters may be populated.

Issuer specifies the subject of the issuer of the certificate used to sign the message.

SerialNumber is the serial number of the certificate used to sign the message.

SubjectKeyIdentifier is the X.509 subjectKeyIdentifier extension value of the certificate used to sign the message encoded as a hex string.

CertEncoded is the PEM (base64 encoded) public certificate needed to verify the signature. Note: when this value is present the class will automatically use this value to perform signature verification.

The signer_cert property may be set from within this event. In this manner the decision of which signer certificate to load may be delayed until the parameters of this event are inspected and the correct certificate can be located and loaded.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Encrypt 2020 Python Edition - Version 20.0 [Build 8155]