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

type CertificateVerify

source code


Serializer for TLS handshake protocol Certificate Verify message.

Instance Methods [hide private]
 
__init__(self, version)
Create message.
source code
 
create(self, signature, signatureAlgorithm=None)
Provide data for serialisation of message.
source code
 
parse(self, parser)
Deserialize message from parser.
source code
bytearray
write(self)
Serialize the data to bytearray.
source code

Inherited from HandshakeMsg: postWrite

Method Details [hide private]

__init__(self, version)
(Constructor)

source code 

Create message.

Parameters:
  • version - TLS protocol version in use
Overrides: HandshakeMsg.__init__

create(self, signature, signatureAlgorithm=None)

source code 

Provide data for serialisation of message.

Parameters:
  • signature - signature carried in the message
  • signatureAlgorithm - signature algorithm used to make the signature (TLSv1.2 only)

parse(self, parser)

source code 

Deserialize message from parser.

Parameters:
  • parser - parser with data to read