SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_store_certificate Event

This event is fired when a certificate should be stored along with a signature.

Syntax

class OfficeVerifierStoreCertificateEventParams(object):
  @property
  def cert() -> bytes: ...
  @property
  def uri() -> str: ...
  @uri.setter
  def uri(value) -> None: ...

# In class OfficeVerifier:
@property
def on_store_certificate() -> Callable[[OfficeVerifierStoreCertificateEventParams], None]: ...
@on_store_certificate.setter
def on_store_certificate(event_hook: Callable[[OfficeVerifierStoreCertificateEventParams], None]) -> None: ...

Remarks

This event could occur if you are verifying XAdES-C form or higher. Cert parameter contains a certificate in binary form that should be stored along with a signature, and the user should provide the URI of the stored certificate.

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