SecureBlackbox 2020 .NET Edition

Questions / Feedback?

SignRequestCompleted Event

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

Syntax

public event OnSignRequestCompletedHandler OnSignRequestCompleted;

public delegate void OnSignRequestCompletedHandler(object sender, DcauthwebserverSignRequestCompletedEventArgs e);

public class DcauthwebserverSignRequestCompletedEventArgs : EventArgs {
  public long ConnectionId { get; }
  public string Hash { get; }
public byte[] HashB { get; } public string Username { get; } public string Signature { get; }
public byte[] SignatureB { get; } }
Public Event OnSignRequestCompleted As OnSignRequestCompletedHandler

Public Delegate Sub OnSignRequestCompletedHandler(sender As Object, e As DcauthwebserverSignRequestCompletedEventArgs)

Public Class DcauthwebserverSignRequestCompletedEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionId As Long
  Public ReadOnly Property Hash As String
Public ReadOnly Property HashB As Byte() Public ReadOnly Property Username As String Public ReadOnly Property Signature As String
Public ReadOnly Property SignatureB As Byte() End Class

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 SignRequest event.

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