SecureBlackbox 2020 Qt Edition

Questions / Feedback?

CertificateValidate Event

Fires when a client certificate needs to be validated.

Syntax

class RESTServerCertificateValidateEventParams {
public:
  qint64 ConnectionID();
  bool Accept();
  void SetAccept(bool bAccept);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void CertificateValidate(RESTServerCertificateValidateEventParams *e);
// Or, subclass RESTServer and override this emitter function. virtual int FireCertificateValidate(RESTServerCertificateValidateEventParams *e) {...}

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