SecureBlackbox 2020 C++ Edition

Questions / Feedback?

SignRequestCompleted Event

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

Syntax

ANSI (Cross Platform)
virtual int FireSignRequestCompleted(DCAuthSignRequestCompletedEventParams *e);
typedef struct {
const char *Hash; int lenHash;
const char *Username;
const char *Signature; int lenSignature; int reserved; } DCAuthSignRequestCompletedEventParams; Unicode (Windows) virtual INT FireSignRequestCompleted(DCAuthSignRequestCompletedEventParams *e);
typedef struct {
LPCSTR Hash; INT lenHash;
LPCWSTR Username;
LPCSTR Signature; INT lenSignature; INT reserved; } DCAuthSignRequestCompletedEventParams;
- (void)onSignRequestCompleted:(NSData*)hash :(NSString*)username :(NSData*)signature;
#define EID_DCAUTH_SIGNREQUESTCOMPLETED 10

virtual INT SECUREBLACKBOX_CALL FireSignRequestCompleted(LPSTR &lpHash, INT &lenHash, LPSTR &lpszUsername, LPSTR &lpSignature, INT &lenSignature);

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 C++ Edition - Version 20.0 [Build 8166]