QSslError Class
QSslError 类提供 SSL 错误。更多
头文件: | #include <QSslError> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Network) target_link_libraries(mytarget PRIVATE Qt6::Network) |
qmake: | QT += network |
- 所有成员(包括继承成员)的列表
- QSslError 属于网络编程 API和隐式共享类。
注意:该类中的所有函数都是可重入的。
公共类型
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::NoError | 0 |
QSslError::UnableToGetIssuerCertificate | 1 |
QSslError::UnableToDecryptCertificateSignature | 2 |
QSslError::UnableToDecodeIssuerPublicKey | 3 |
QSslError::CertificateSignatureFailed | 4 |
QSslError::CertificateNotYetValid | 5 |
QSslError::CertificateExpired | 6 |
QSslError::InvalidNotBeforeField | 7 |
QSslError::InvalidNotAfterField | 8 |
QSslError::SelfSignedCertificate | 9 |
QSslError::SelfSignedCertificateInChain | 10 |
QSslError::UnableToGetLocalIssuerCertificate | 11 |
QSslError::UnableToVerifyFirstCertificate | 12 |
QSslError::CertificateRevoked | 13 |
QSslError::InvalidCaCertificate | 14 |
QSslError::PathLengthExceeded | 15 |
QSslError::InvalidPurpose | 16 |
QSslError::CertificateUntrusted | 17 |
QSslError::CertificateRejected | 18 |
QSslError::SubjectIssuerMismatch | 19 |
QSslError::AuthorityIssuerSerialNumberMismatch | 20 |
QSslError::NoPeerCertificate | 21 |
QSslError::HostNameMismatch | 22 |
QSslError::UnspecifiedError | -1 |
QSslError::NoSslSupport | 23 |
QSslError::CertificateBlacklisted | 24 |
QSslError::CertificateStatusUnknown | 25 |
QSslError::OcspNoResponseFound | 26 |
QSslError::OcspMalformedRequest | 27 |
QSslError::OcspMalformedResponse | 28 |
QSslError::OcspInternalError | 29 |
QSslError::OcspTryLater | 30 |
QSslError::OcspSigRequred | 31 |
QSslError::OcspUnauthorized | 32 |
QSslError::OcspResponseCannotBeTrusted | 33 |
QSslError::OcspResponseCertIdUnknown | 34 |
QSslError::OcspResponseExpired | 35 |
QSslError::OcspStatusUnknown | 36 |
另请参阅 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.