SecureBlackbox 2020 Qt Edition

Questions / Feedback?

PrivateKeyNeeded Event

This event is fired when client's public key was accepted by the server, but the corresponding secret key is not available.

Syntax

class SSHClientPrivateKeyNeededEventParams {
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(SSHClientPrivateKeyNeededEventParams *e);
// Or, subclass SSHClient and override this emitter function. virtual int FirePrivateKeyNeeded(SSHClientPrivateKeyNeededEventParams *e) {...}

Remarks

Set Skip to true when it is not possible to load the missing key for some reason.

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