Package tlslite :: Module messages :: Class CertificateStatus
[hide private]
[frames] | no frames]

type CertificateStatus

source code


Handling of the CertificateStatus message from RFC 6066.

Handling of the handshake protocol message that includes the OCSP staple.

Instance Methods [hide private]
 
__init__(self)
Create the objet, set its type.
source code
 
create(self, status_type, ocsp)
Set up message payload.
source code
 
parse(self, parser)
Deserialise the message from one the wire data.
source code
 
write(self)
Serialise the message.
source code

Inherited from HandshakeMsg: postWrite

Instance Variables [hide private]
bytearray ocsp
OCSPResponse from RFC 2560
int status_type
type of response returned
Method Details [hide private]

__init__(self)
(Constructor)

source code 

Create the objet, set its type.

Overrides: HandshakeMsg.__init__