SecureBlackbox 2020 .NET Edition

Questions / Feedback?

Start Event

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

Syntax

public event OnStartHandler OnStart;

public delegate void OnStartHandler(object sender, AuthenticodesignerStartEventArgs e);

public class AuthenticodesignerStartEventArgs : EventArgs {
  public int SpecifiedChecksum { get; }
  public int ActualChecksum { get; }
  public bool IsSigned { get; }
  public bool Cancel { get; set; }
}
Public Event OnStart As OnStartHandler

Public Delegate Sub OnStartHandler(sender As Object, e As AuthenticodesignerStartEventArgs)

Public Class AuthenticodesignerStartEventArgs Inherits EventArgs
  Public ReadOnly Property SpecifiedChecksum As Integer
  Public ReadOnly Property ActualChecksum As Integer
  Public ReadOnly Property IsSigned As Boolean
  Public Property Cancel As Boolean
End Class

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 component, 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 .NET Edition - Version 20.0 [Build 8165]