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

Class 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

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, version)
(Constructor)

source code 

Create message

Parameters:
  • version - TLS protocol version in use
Overrides: object.__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