|
static QList< QSslCertificate > | casFromFile (const QString &certspath) |
| Returns a list of concatenated CAs from a PEM or DER formatted file. More...
|
|
static QList< QSslCertificate > | casMerge (const QList< QSslCertificate > &bundle1, const QList< QSslCertificate > &bundle2) |
| casMerge merges two certificate bundles in a single one removing duplicates, the certificates from the bundle2 are appended to bundle1 if not already there More...
|
|
static QList< QSslCertificate > | casRemoveSelfSigned (const QList< QSslCertificate > &caList) |
| casRemoveSelfSigned remove self-signed CA certificates from caList More...
|
|
static QSslCertificate | certFromFile (const QString &certpath) |
| Returns the first cert from a PEM or DER formatted file. More...
|
|
static bool | certificateIsAuthority (const QSslCertificate &cert) |
| Gets whether a certificate is an Authority. More...
|
|
static bool | certificateIsAuthorityOrIssuer (const QSslCertificate &cert) |
| Gets whether a certificate is an Authority or can at least sign other certificates. More...
|
|
static bool | certificateIsIssuer (const QSslCertificate &cert) |
| Gets whether a certificate can sign other certificates. More...
|
|
static bool | certificateIsSslClient (const QSslCertificate &cert) |
| Gets whether a certificate is probably used for a client identity. More...
|
|
static bool | certificateIsSslServer (const QSslCertificate &cert) |
| Gets whether a certificate is probably used for a SSL server. More...
|
|
static QList< QgsAuthCertUtils::CertUsageType > | certificateUsageTypes (const QSslCertificate &cert) |
| Try to determine the certificates usage types. More...
|
|
static QString | certificateUsageTypeString (QgsAuthCertUtils::CertUsageType usagetype) |
| Certificate usage type strings per enum. More...
|
|
static bool | certIsCurrent (const QSslCertificate &cert) |
| certIsCurrent checks if cert is viable for its not before and not after dates More...
|
|
static bool | certIsViable (const QSslCertificate &cert) |
| certIsViable checks for viability errors of cert and whether it is NULL More...
|
|
static QStringList | certKeyBundleToPem (const QString &certpath, const QString &keypath, const QString &keypass=QString(), bool reencrypt=true) |
| Returns list of certificate, private key and algorithm (as PEM text) from file path components. More...
|
|
static QList< QSslCertificate > | certsFromFile (const QString &certspath) |
| Returns a list of concatenated certs from a PEM or DER formatted file. More...
|
|
static QList< QSslCertificate > | certsFromString (const QString &pemtext) |
| Returns a list of concatenated certs from a PEM Base64 text block. More...
|
|
static QMap< QString, QList< QSslCertificate > > | certsGroupedByOrg (const QList< QSslCertificate > &certs) |
| Map certificates to their oraganization. More...
|
|
static QByteArray | certsToPemText (const QList< QSslCertificate > &certs) |
| certsToPemText dump a list of QSslCertificates to PEM text More...
|
|
static QList< QSslError > | certViabilityErrors (const QSslCertificate &cert) |
| certViabilityErrors checks basic characteristics (validity dates, blocklisting, etc.) of given cert More...
|
|
static QByteArray | fileData (const QString &path) |
| Returns data from a local file via a read-only operation. More...
|
|
static QString | getCaSourceName (QgsAuthCertUtils::CaCertSource source, bool single=false) |
| Gets the general name for CA source enum type. More...
|
|
static QString | getCertDistinguishedName (const QSslCertificate &qcert, const QCA::Certificate &acert=QCA::Certificate(), bool issuer=false) |
| Gets combined distinguished name for certificate. More...
|
|
static QString | getCertTrustName (QgsAuthCertUtils::CertTrustPolicy trust) |
| Gets the general name for certificate trust. More...
|
|
static QString | getColonDelimited (const QString &txt) |
| Gets string with colon delimiters every 2 characters. More...
|
|
static QString | getSslProtocolName (QSsl::SslProtocol protocol) |
| SSL Protocol name strings per enum. More...
|
|
static QSslKey | keyFromFile (const QString &keypath, const QString &keypass=QString(), QString *algtype=nullptr) |
| Returns non-encrypted key from a PEM or DER formatted file. More...
|
|
static QMap< QString, QSslCertificate > | mapDigestToCerts (const QList< QSslCertificate > &certs) |
| Map certificate sha1 to certificate as simple cache. More...
|
|
static QMap< QString, QgsAuthConfigSslServer > | mapDigestToSslConfigs (const QList< QgsAuthConfigSslServer > &configs) |
| Map SSL custom configs' certificate sha1 to custom config as simple cache. More...
|
|
static bool | pemIsPkcs8 (const QString &keyPemTxt) |
| Determine if the PEM-encoded text of a key is PKCS#8 format. More...
|
|
static QString | pemTextToTempFile (const QString &name, const QByteArray &pemtext) |
| Write a temporary file for a PEM text of cert/key/CAs bundle component. More...
|
|
static QList< QSslCertificate > | pkcs12BundleCas (const QString &bundlepath, const QString &bundlepass=QString()) |
| Returns list of CA certificates (as QSslCertificate) for a PKCS#12 bundle. More...
|
|
static QStringList | pkcs12BundleToPem (const QString &bundlepath, const QString &bundlepass=QString(), bool reencrypt=true) |
| Returns list of certificate, private key and algorithm (as PEM text) for a PKCS#12 bundle. More...
|
|
static QCA::KeyBundle | qcaKeyBundle (const QString &path, const QString &pass) |
| PKI key/cert bundle from file path, e.g. More...
|
|
static QString | qcaKnownConstraint (QCA::ConstraintTypeKnown constraint) |
| Certificate well-known constraint strings per enum. More...
|
|
static QString | qcaSignatureAlgorithm (QCA::SignatureAlgorithm algorithm) |
| Certificate signature algorithm strings per enum. More...
|
|
static QString | qcaValidityMessage (QCA::Validity validity) |
| Certificate validity check messages per enum. More...
|
|
static QCA::CertificateCollection | qtCertsToQcaCollection (const QList< QSslCertificate > &certs) |
| Convert a QList of QSslCertificate to a QCA::CertificateCollection. More...
|
|
static QCA::Certificate | qtCertToQcaCert (const QSslCertificate &cert) |
| Convert a QSslCertificate to a QCA::Certificate. More...
|
|
static QString | resolvedCertName (const QSslCertificate &cert, bool issuer=false) |
| Gets the general name via RFC 5280 resolution. More...
|
|
static QString | shaHexForCert (const QSslCertificate &cert, bool formatted=false) |
| Gets the sha1 hash for certificate. More...
|
|
static QMap< QString, QList< QgsAuthConfigSslServer > > | sslConfigsGroupedByOrg (const QList< QgsAuthConfigSslServer > &configs) |
| Map SSL custom configs' certificates to their oraganization. More...
|
|
static QString | sslErrorEnumString (QSslError::SslError errenum) |
| Gets short strings describing an SSL error. More...
|
|
static QList< QPair< QSslError::SslError, QString > > | sslErrorEnumStrings () |
| Gets short strings describing SSL errors. More...
|
|
static QList< QSslError > | validateCertChain (const QList< QSslCertificate > &certificateChain, const QString &hostName=QString(), bool trustRootCa=false) |
| validateCertChain validates the given certificateChain More...
|
|
static QStringList | validatePKIBundle (QgsPkiBundle &bundle, bool useIntermediates=true, bool trustRootCa=false) |
| validatePKIBundle validate the PKI bundle by checking the certificate chain, the expiration and effective dates, optionally trusts the root CA More...
|
|