SecureBlackbox Lite 2020 Python Edition

Questions / Feedback?

on_before_certificate_validation Event

Reports the start of certificate validation.

Syntax

class CertificateValidatorBeforeCertificateValidationEventParams(object):
  @property
  def cert() -> str: ...
  @property
  def ca_cert() -> str: ...

# In class CertificateValidator:
@property
def on_before_certificate_validation() -> Callable[[CertificateValidatorBeforeCertificateValidationEventParams], None]: ...
@on_before_certificate_validation.setter
def on_before_certificate_validation(event_hook: Callable[[CertificateValidatorBeforeCertificateValidationEventParams], None]) -> None: ...

Remarks

This event is fired when the class is about to start validating Cert with CACert.

A 'validation' is a single step of validating a certificate with its CA certificate. A row of consecutive validations of the same certificate with different CAs are grouped into 'processings.'

The firing of on_after_certificate_validation marks the end of the certificate validation step.

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