26 const size_t cipher_keylen = suite.cipher_keylen();
27 const size_t mac_keylen = suite.mac_keylen();
28 const size_t cipher_nonce_bytes = suite.nonce_bytes_from_handshake();
30 const bool extended_master_secret = state->
server_hello()->supports_extended_master_secret();
32 const size_t prf_gen = 2 * (mac_keylen + cipher_keylen + cipher_nonce_bytes);
34 const uint8_t MASTER_SECRET_MAGIC[] = {0x6D, 0x61, 0x73, 0x74, 0x65, 0x72, 0x20, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74};
36 const uint8_t EXT_MASTER_SECRET_MAGIC[] = {0x65, 0x78, 0x74, 0x65, 0x6E, 0x64, 0x65, 0x64, 0x20, 0x6D, 0x61,
37 0x73, 0x74, 0x65, 0x72, 0x20, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74};
39 const uint8_t KEY_GEN_MAGIC[] = {0x6B, 0x65, 0x79, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6E, 0x73, 0x69, 0x6F, 0x6E};
45 m_master_sec = pre_master_secret;
47 std::vector<uint8_t> salt;
48 std::vector<uint8_t> label;
49 if(extended_master_secret) {
50 label.assign(EXT_MASTER_SECRET_MAGIC, EXT_MASTER_SECRET_MAGIC +
sizeof(EXT_MASTER_SECRET_MAGIC));
51 salt += state->
hash().
final(suite.prf_algo());
53 label.assign(MASTER_SECRET_MAGIC, MASTER_SECRET_MAGIC +
sizeof(MASTER_SECRET_MAGIC));
58 m_master_sec = prf->derive_key(48, pre_master_secret, salt, label);
61 std::vector<uint8_t> salt;
62 std::vector<uint8_t> label;
63 label.assign(KEY_GEN_MAGIC, KEY_GEN_MAGIC +
sizeof(KEY_GEN_MAGIC));
68 prf_gen, m_master_sec.data(), m_master_sec.size(), salt.data(), salt.size(), label.data(), label.size());
70 const uint8_t* key_data = prf_output.data();
72 m_c_aead.resize(mac_keylen + cipher_keylen);
73 m_s_aead.resize(mac_keylen + cipher_keylen);
76 copy_mem(&m_c_aead[0], key_data, mac_keylen);
77 copy_mem(&m_s_aead[0], key_data + mac_keylen, mac_keylen);
81 if(cipher_keylen > 0) {
82 copy_mem(&m_c_aead[mac_keylen], key_data + 2 * mac_keylen, cipher_keylen);
83 copy_mem(&m_s_aead[mac_keylen], key_data + 2 * mac_keylen + cipher_keylen, cipher_keylen);
89 if(cipher_nonce_bytes > 0) {
90 const uint8_t* c_nonce_bytes = key_data + 2 * (mac_keylen + cipher_keylen);
91 m_c_nonce.assign(c_nonce_bytes, c_nonce_bytes + cipher_nonce_bytes);
93 const uint8_t* s_nonce_bytes = key_data + 2 * (mac_keylen + cipher_keylen) + cipher_nonce_bytes;
94 m_s_nonce.assign(s_nonce_bytes, s_nonce_bytes + cipher_nonce_bytes);