SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_certificate_validate Event

Fires when a client certificate needs to be validated.

Syntax

class WebDAVServerCertificateValidateEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def accept() -> bool: ...
  @accept.setter
  def accept(value) -> None: ...

# In class WebDAVServer:
@property
def on_certificate_validate() -> Callable[[WebDAVServerCertificateValidateEventParams], None]: ...
@on_certificate_validate.setter
def on_certificate_validate(event_hook: Callable[[WebDAVServerCertificateValidateEventParams], None]) -> None: ...

Remarks

class fires this event to notify the application of an authenticating client. Use the event handler to validate the certificate and pass your decision back to the server component via the Accept parameter.

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