SecureBlackbox 2020 Qt Edition

Questions / Feedback?

SignRequestCompleted Event

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

Syntax

class DCAuthWebServerSignRequestCompletedEventParams {
public:
  qint64 ConnectionId();
  const QByteArray &Hash();
  const QString &Username();
  const QByteArray &Signature();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void SignRequestCompleted(DCAuthWebServerSignRequestCompletedEventParams *e);
// Or, subclass DCAuthWebServer and override this emitter function. virtual int FireSignRequestCompleted(DCAuthWebServerSignRequestCompletedEventParams *e) {...}

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