SecureBlackbox 2020 Qt Edition

Questions / Feedback?

Start Event

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

Syntax

class AuthenticodeSignerStartEventParams {
public:
  int SpecifiedChecksum();
  int ActualChecksum();
  bool IsSigned();
  bool Cancel();
  void SetCancel(bool bCancel);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Start(AuthenticodeSignerStartEventParams *e);
// Or, subclass AuthenticodeSigner and override this emitter function. virtual int FireStart(AuthenticodeSignerStartEventParams *e) {...}

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 Qt Edition - Version 20.0 [Build 8154]