QOcspResponse¶
This class represents Online Certificate Status Protocol response. More…

New in version 5.13.
Synopsis¶
Functions¶
def
__ne__
(, rhs)def
certificateStatus
()def
revocationReason
()def
subject
()def
swap
(other)
Detailed Description¶
The
QOcspResponse
class represents the revocation status of a server’s certficate, received by the client-side socket during the TLS handshake.QSslSocket
must be configured with OCSP stapling enabled.See also
QSslSocket
ocspResponses()
certificateStatus()
revocationReason()
responder()
subject()
QOcspCertificateStatus
QOcspRevocationReason
setOcspStaplingEnabled()
ocspStaplingEnabled()
peerCertificate()
-
class
QOcspResponse
¶ QOcspResponse(other)
- param other
Creates a new response with status QOcspCertificateStatus::Unknown and revocation reason QOcspRevocationReason::None.
See also
QOcspCertificateStatus
Copy-constructs a
QOcspResponse
instance.
-
PySide2.QtNetwork.QOcspResponse.
certificateStatus
()¶ - Return type
QOcspCertificateStatus
Returns the certificate status.
See also
QOcspCertificateStatus
-
PySide2.QtNetwork.QOcspResponse.
__ne__
(rhs)¶ - Parameters
rhs –
QOcspResponse
- Return type
bool
-
PySide2.QtNetwork.QOcspResponse.
revocationReason
()¶ - Return type
QOcspRevocationReason
Returns the reason for revocation.
-
PySide2.QtNetwork.QOcspResponse.
subject
()¶ - Return type
This function returns a certificate, for which this response was issued.
-
PySide2.QtNetwork.QOcspResponse.
swap
(other)¶ - Parameters
other –
QOcspResponse
Swaps this response with
other
.