SecureBlackbox 2020 C++ Edition

Questions / Feedback?

CertificateValidate Event

Fires when a client certificate needs to be validated.

Syntax

ANSI (Cross Platform)
virtual int FireCertificateValidate(TSPServerCertificateValidateEventParams *e);
typedef struct {
int64 ConnectionID;
int Accept; int reserved; } TSPServerCertificateValidateEventParams; Unicode (Windows) virtual INT FireCertificateValidate(TSPServerCertificateValidateEventParams *e);
typedef struct {
LONG64 ConnectionID;
BOOL Accept; INT reserved; } TSPServerCertificateValidateEventParams;
- (void)onCertificateValidate:(long long)connectionID :(int*)accept;
#define EID_TSPSERVER_CERTIFICATEVALIDATE 3

virtual INT SECUREBLACKBOX_CALL FireCertificateValidate(LONG64 &lConnectionID, BOOL &bAccept);

Remarks

The class fires this event to notify the application of an authenticating client. Use the event handler to validate the certificate and pass your decision back to the server component via the Accept parameter.

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