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

type ClientMasterKey

source code


Handling of SSLv2 CLIENT-MASTER-KEY message.

Instance Methods [hide private]
 
__init__(self) 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

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
Method Details [hide private]

__init__(self)
(Constructor)

source code 
Overrides: HandshakeMsg.__init__