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

Class ClientMasterKey

source code


Handling of SSLv2 CLIENT-MASTER-KEY message

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
create(self, cipher, clear_key, encrypted_key, key_argument)
Set values of the CLIENT-MASTER-KEY object
source code
 
parse(self, parser)
Deserialise object from on the wire data
source code
 
write(self)
Serialise the object to on the wire data
source code

Inherited from HandshakeMsg: postWrite

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

Instance Variables [hide private]
int cipher
negotiated cipher
bytearray clear_key
the part of master secret key that is sent in clear for export cipher suites
bytearray encrypted_key
(part of) master secret encrypted using server key
bytearray key_argument
additional key argument for block ciphers
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)