Home | History | Annotate | Download | only in tls

Lines Matching refs:rl

83 	key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
84 conn->rl.iv_size);
97 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
98 pos += conn->rl.hash_size;
100 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
101 pos += conn->rl.hash_size;
104 os_memcpy(conn->rl.write_key, pos, conn->rl.key_material_len);
105 pos += conn->rl.key_material_len;
107 os_memcpy(conn->rl.read_key, pos, conn->rl.key_material_len);
108 pos += conn->rl.key_material_len;
111 os_memcpy(conn->rl.write_iv, pos, conn->rl.iv_size);
112 pos += conn->rl.iv_size;
114 os_memcpy(conn->rl.read_iv, pos, conn->rl.iv_size);
115 pos += conn->rl.iv_size;
159 if (tlsv1_record_receive(&conn->rl, pos, end - pos,
232 if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_APPLICATION_DATA,
280 res = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
374 tlsv1_record_set_cipher_suite(&conn->rl, TLS_NULL_WITH_NULL_NULL);
375 tlsv1_record_change_write_cipher(&conn->rl);
376 tlsv1_record_change_read_cipher(&conn->rl);
443 switch (conn->rl.cipher_suite) {
490 tlsv1_record_set_cipher_suite(&conn->rl, TLS_NULL_WITH_NULL_NULL);
491 tlsv1_record_change_write_cipher(&conn->rl);
492 tlsv1_record_change_read_cipher(&conn->rl);
594 return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
595 conn->rl.iv_size);