SecureBlackbox 2020 Qt Edition

Questions / Feedback?

KnownKeyReceived Event

This event is fired when a known SSH key is received from the server.

Syntax

class SSHClientKnownKeyReceivedEventParams {
public:
  int Algorithm();
  int Bits();
  const QString &FingerprintSHA256();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void KnownKeyReceived(SSHClientKnownKeyReceivedEventParams *e);
// Or, subclass SSHClient and override this emitter function. virtual int FireKnownKeyReceived(SSHClientKnownKeyReceivedEventParams *e) {...}

Remarks

This event allows to check the fingerprint of the key received from the server, in case the key is in the list of known keys. Algorithm and Bits specify the key algorithm and the number of bits. FingerprintSHA256 contains the key's fingerprint.

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