SecureBlackbox 2020 Qt Edition

Questions / Feedback?

PasswordNeeded Event

This event is fired when a decryption password is needed.

Syntax

class CryptoKeyStoragePasswordNeededEventParams {
public:
  const QString &NeededFor();
  const QString &Password();
  void SetPassword(const QString &qsPassword);
  bool Cancel();
  void SetCancel(bool bCancel);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void PasswordNeeded(CryptoKeyStoragePasswordNeededEventParams *e);
// Or, subclass CryptoKeyStorage and override this emitter function. virtual int FirePasswordNeeded(CryptoKeyStoragePasswordNeededEventParams *e) {...}

Remarks

The class fires this event when a password is needed to decrypt a certificate or a private key.

In the handler of this event, assign the password to the Password parameter, or set Cancel to true to abort the operation.

The NeededFor parameter identifies the key or certificate for which the password is requested.

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