Home | History | Annotate | Download | only in tls

Lines Matching refs:rl

65 	key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
66 conn->rl.iv_size);
79 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
80 pos += conn->rl.hash_size;
82 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
83 pos += conn->rl.hash_size;
86 os_memcpy(conn->rl.read_key, pos, conn->rl.key_material_len);
87 pos += conn->rl.key_material_len;
89 os_memcpy(conn->rl.write_key, pos, conn->rl.key_material_len);
90 pos += conn->rl.key_material_len;
93 os_memcpy(conn->rl.read_iv, pos, conn->rl.iv_size);
94 pos += conn->rl.iv_size;
96 os_memcpy(conn->rl.write_iv, pos, conn->rl.iv_size);
97 pos += conn->rl.iv_size;
133 if (tlsv1_record_receive(&conn->rl, pos, end - pos,
206 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_APPLICATION_DATA,
254 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
346 tlsv1_record_set_cipher_suite(&conn->rl, TLS_NULL_WITH_NULL_NULL);
347 tlsv1_record_change_write_cipher(&conn->rl);
348 tlsv1_record_change_read_cipher(&conn->rl);
434 switch (conn->rl.cipher_suite) {
535 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
536 conn->rl.iv_size);