Class SSL.Cipher.CipherSpec
- Description
 Cipher specification.
- Variable
bulk_cipher_algorithm
 programSSL.Cipher.CipherSpec.bulk_cipher_algorithm- Description
 The algorithm to use for the bulk of the transfered data.
- Variable
hash_size
 intSSL.Cipher.CipherSpec.hash_size- Description
 The number of bytes in the MAC hashes.
- Variable
iv_size
 intSSL.Cipher.CipherSpec.iv_size- Description
 The number of bytes of random data needed for initialization vectors.
- Variable
key_bits
 intSSL.Cipher.CipherSpec.key_bits- Description
 The effective number of bits in key_material.
This is typically
key_material * 8, but for eg DES this iskey_material * 7.
- Variable
key_material
 intSSL.Cipher.CipherSpec.key_material- Description
 The number of bytes of key material used on initialization.
- Variable
mac_algorithm
 programSSL.Cipher.CipherSpec.mac_algorithm- Description
 The Message Authentication Code to use for the packets.
- Variable
sign
 function(object,string,ADT.struct:ADT.struct) SSL.Cipher.CipherSpec.sign- Description
 The function used to sign packets.
- Variable
verify
 function(object,string,ADT.struct,Gmp.mpz:bool) SSL.Cipher.CipherSpec.verify- Description
 The function used to verify the signature for packets.