From the wireshark logs I can see that the first 32 bytes are used for Client Write Key where in RFC5246 it stated that the first bytes are for the MAC then the Key and then the IV. What is the correct order? I'm using protocol Thanks
asked 17 Oct '16, 12:15 Gil Fefer edited 18 Oct '16, 00:55 Lekensteyn |
One Answer:
AEAD ciphers (like the AES-GCM family) do not need an additional MAC key since the construction already provides authentication (AEAD = Authenticated Encryption with Additional Data). In RFC 5246 (Section 6.3) you can find the following partitioning of the key expansion block:
For You can find these details also in RFC 5288. answered 18 Oct '16, 01:38 Lekensteyn |