QSslError Class

QSslError 类提供 SSL 错误。更多

头文件: #include <QSslError>
CMake: find_package(Qt6 REQUIRED COMPONENTS Network)
target_link_libraries(mytarget PRIVATE Qt6::Network)
qmake: QT += network

注意:该类中的所有函数都是可重入的

公共类型

enum SslError { NoError, UnableToGetIssuerCertificate, UnableToDecryptCertificateSignature, UnableToDecodeIssuerPublicKey, CertificateSignatureFailed, …, OcspStatusUnknown }

公共函数

QSslError()
QSslError(QSslError::SslError error)
QSslError(QSslError::SslError error, const QSslCertificate &certificate)
QSslError(const QSslError &other)
~QSslError()
QSslCertificate certificate() const
QSslError::SslError error() const
QString errorString() const
void swap(QSslError &other)
bool operator!=(const QSslError &other) const
QSslError &operator=(const QSslError &other)
bool operator==(const QSslError &other) const

详细说明

QSslError 提供了一个简单的 API,用于管理QSslSocket SSL 握手过程中的错误。

另请参阅 QSslSocket,QSslCertificate, 和QSslCipher

成员类型文档

enum QSslError::SslError

描述 SSL 握手过程中可能发生的所有公认错误。

常量
QSslError::NoError0
QSslError::UnableToGetIssuerCertificate1
QSslError::UnableToDecryptCertificateSignature2
QSslError::UnableToDecodeIssuerPublicKey3
QSslError::CertificateSignatureFailed4
QSslError::CertificateNotYetValid5
QSslError::CertificateExpired6
QSslError::InvalidNotBeforeField7
QSslError::InvalidNotAfterField8
QSslError::SelfSignedCertificate9
QSslError::SelfSignedCertificateInChain10
QSslError::UnableToGetLocalIssuerCertificate11
QSslError::UnableToVerifyFirstCertificate12
QSslError::CertificateRevoked13
QSslError::InvalidCaCertificate14
QSslError::PathLengthExceeded15
QSslError::InvalidPurpose16
QSslError::CertificateUntrusted17
QSslError::CertificateRejected18
QSslError::SubjectIssuerMismatch19
QSslError::AuthorityIssuerSerialNumberMismatch20
QSslError::NoPeerCertificate21
QSslError::HostNameMismatch22
QSslError::UnspecifiedError-1
QSslError::NoSslSupport23
QSslError::CertificateBlacklisted24
QSslError::CertificateStatusUnknown25
QSslError::OcspNoResponseFound26
QSslError::OcspMalformedRequest27
QSslError::OcspMalformedResponse28
QSslError::OcspInternalError29
QSslError::OcspTryLater30
QSslError::OcspSigRequred31
QSslError::OcspUnauthorized32
QSslError::OcspResponseCannotBeTrusted33
QSslError::OcspResponseCertIdUnknown34
QSslError::OcspResponseExpired35
QSslError::OcspStatusUnknown36

另请参阅 QSslError::errorString().

成员函数文档

QSslError::QSslError()

构造一个没有错误和默认证书的 QSslError 对象。

[explicit] QSslError::QSslError(QSslError::SslError error)

构造一个 QSslError 对象。参数指定发生的error

QSslError::QSslError(QSslError::SslError error, const QSslCertificate &certificate)

构造一个 QSslError 对象。两个参数指定了发生的error ,以及错误与哪个certificate 有关。

另请参阅 QSslCertificate

QSslError::QSslError(const QSslError &other)

构建一个与other 完全相同的副本。

[noexcept] QSslError::~QSslError()

销毁QSslError 对象。

QSslCertificate QSslError::certificate() const

返回与此错误相关的证书,如果错误与任何证书无关,则返回空证书。

另请参阅 error() 和errorString()。

QSslError::SslError QSslError::error() const

返回错误类型。

另请参阅 errorString() 和certificate()。

QString QSslError::errorString() const

返回对错误的简短本地化人可读描述。

另请参阅 error() 和certificate()。

[noexcept] void QSslError::swap(QSslError &other)

将此错误实例与other 互换。该操作速度非常快,从未出现过故障。

bool QSslError::operator!=(const QSslError &other) const

如果该错误不等于other ,则返回true ;否则返回 false。

QSslError &QSslError::operator=(const QSslError &other)

other 的内容赋值给该错误。

bool QSslError::operator==(const QSslError &other) const

如果该错误等于other ,则返回true ;否则返回false

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.