SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_sign_request_completed Event

This event signifies completion of the processing of an atomic signing request.

Syntax

class DCAuthWebServerSignRequestCompletedEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def hash() -> bytes: ...
  @property
  def username() -> str: ...
  @property
  def signature() -> bytes: ...

# In class DCAuthWebServer:
@property
def on_sign_request_completed() -> Callable[[DCAuthWebServerSignRequestCompletedEventParams], None]: ...
@on_sign_request_completed.setter
def on_sign_request_completed(event_hook: Callable[[DCAuthWebServerSignRequestCompletedEventParams], None]) -> None: ...

Remarks

Use this event to track completion of signing request processing. The Hash parameter contains the hash that is signed, as supplied by the requestor, and the Signature parameter contains the resulting cryptographic signature. The Username parameter matches the parameter in on_sign_request event.

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