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

Class RecordHeader2

source code


SSLv2 record header

Instance Methods [hide private]
 
__init__(self)
Define a SSLv2 style class
source code
 
create(self, length, padding=0, securityEscape=False)
Set object's values
source code
 
parse(self, parser)
Deserialise object from Parser
source code
 
write(self)
Serialise object to bytearray
source code

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

Instance Variables [hide private]
int padding
number of bytes added at end of message to make it multiple of block cipher size
boolean securityEscape
whether the record contains a security escape message
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

Define a SSLv2 style class

Overrides: object.__init__