SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_chain_validated Event

Reports the end of the validation process.

Syntax

class SOAPVerifierChainValidatedEventParams(object):
  @property
  def subject_rdn() -> str: ...
  @property
  def validation_result() -> int: ...
  @property
  def validation_details() -> int: ...

# In class SOAPVerifier:
@property
def on_chain_validated() -> Callable[[SOAPVerifierChainValidatedEventParams], None]: ...
@on_chain_validated.setter
def on_chain_validated(event_hook: Callable[[SOAPVerifierChainValidatedEventParams], None]) -> None: ...

Remarks

This event is fired when a certificate chain has been validated. SubjectRDN identifies the owner of the validated certificate.

If ValidationResult equals to 0 (zero), validation has succeeded. Any other value reports failure, and ValidationDetails specifies more details on possible reason for it.

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