SecureBlackbox 2020 Qt Edition

Questions / Feedback?

PrivateKeyNeeded Event

Asks the application for the client's private key.

Syntax

class SFTPClientPrivateKeyNeededEventParams {
public:
  bool Skip();
  void SetSkip(bool bSkip);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void PrivateKeyNeeded(SFTPClientPrivateKeyNeededEventParams *e);
// Or, subclass SFTPClient and override this emitter function. virtual int FirePrivateKeyNeeded(SFTPClientPrivateKeyNeededEventParams *e) {...}

Remarks

The class fires this event if the public key provided in Key was accepted by the server, but no private key is available for it.

Use this event handler to attach the private key to your Key. The component will pick the key up and continue the authentication.

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