SecureBlackbox 2020 Kotlin Edition

Questions / Feedback?

SignRequestCompleted Event

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

Syntax

public open class DefaultDcauthEventListener : DcauthEventListener {
  ...
  public override fun signRequestCompleted(e: DcauthSignRequestCompletedEvent) {}
  ...
}

public class DcauthSignRequestCompletedEvent {
  val hash: ByteArray?
  val username: String?
  val signature: ByteArray?
}

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 Kotlin Edition - Version 20.0 [Build 8063]