I've tried googling for hours but could not find out any document that mentions this:
The length of Session keys (including: Client/Server write MAC, write key & IV) in a SSL connection for some certain cipher suite, such as TLS_RSA_WITH_AES_128_CBC_SHA (00 2f)
The RFC only took me this far:
client_write_MAC_secret[CipherSpec.hash_size]
server_write_MAC_secret[CipherSpec.hash_size]
client_write_key[CipherSpec.key_material]
server_write_key[CipherSpec.key_material]
client_write_IV[CipherSpec.IV_size] /* non-export ciphers */
server_write_IV[CipherSpec.IV_size] /* non-export ciphers */
So, can you please help me with a table of SSL CipherSuite list and the corresponding session keys' size? Thanks so much !