CertList Event

Lists the certificates in a store (see the ListStoreCertificates method).

Syntax

class CertMgrCertListEventParams {
public:
  const QByteArray &CertEncoded();
  const QString &CertSubject();
  const QString &CertIssuer();
  const QString &CertSerialNumber();
  bool HasPrivateKey();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void CertList(CertMgrCertListEventParams *e);
// Or, subclass CertMgr and override this emitter function. virtual int FireCertList(CertMgrCertListEventParams *e) {...}

Remarks

The CertSubject and CertIssuer parameters contain distinguished names of the certificate owner and issuer respectively. The HasPrivateKey flag shows whether the private key for the certificate is available in the system.

The StoreList event and the ListCertificateStores and ListMachineStores methods are used to list the certificate stores in the system.

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