SecureBlackbox 2020 Python Edition

Questions / Feedback?

on_start Event

This event is fired when the class is about to start the signing process.

Syntax

class AuthenticodeSignerStartEventParams(object):
  @property
  def specified_checksum() -> int: ...
  @property
  def actual_checksum() -> int: ...
  @property
  def is_signed() -> bool: ...
  @property
  def cancel() -> bool: ...
  @cancel.setter
  def cancel(value) -> None: ...

# In class AuthenticodeSigner:
@property
def on_start() -> Callable[[AuthenticodeSignerStartEventParams], None]: ...
@on_start.setter
def on_start(event_hook: Callable[[AuthenticodeSignerStartEventParams], None]) -> None: ...

Remarks

This event marks the start of the signing process over a certain file.

SpecifiedChecksum is the checksum specified in the file itself, ActualChecksum is the actual checksum computed by the class, IsSigned specifies whether the file is already signed, and Cancel allows to stop the operation.

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