Searched refs:client_random (Results 1 – 9 of 9) sorted by relevance
| /openbsd/src/lib/libssl/ |
| D | tls12_lib.c | 110 s->s3->client_random, SSL3_RANDOM_SIZE, NULL, 0, in tls12_derive_master_secret()
|
| D | tls13_server.c | 147 CBS cipher_suites, client_random, compression_methods, session_id; in tls13_client_hello_process() local 157 if (!CBS_get_bytes(cbs, &client_random, SSL3_RANDOM_SIZE)) in tls13_client_hello_process() 196 if (!tls13_clienthello_hash_update(ctx, &client_random)) { in tls13_client_hello_process()
|
| D | ssl_clnt.c | 269 memset(s->s3->client_random, 0, in ssl3_connect() 270 sizeof(s->s3->client_random)); in ssl3_connect() 674 arc4random_buf(s->s3->client_random, SSL3_RANDOM_SIZE); in ssl3_send_client_hello() 684 if (!CBB_add_bytes(&client_hello, s->s3->client_random, in ssl3_send_client_hello() 685 sizeof(s->s3->client_random))) in ssl3_send_client_hello() 1334 if (!CBB_add_bytes(&cbb, s->s3->client_random, SSL3_RANDOM_SIZE)) in ssl3_get_server_key_exchange()
|
| D | ssl_srvr.c | 778 CBS cbs, client_random, session_id, cookie, cipher_suites; in ssl3_get_client_hello() local 816 if (!CBS_get_bytes(&cbs, &client_random, SSL3_RANDOM_SIZE)) in ssl3_get_client_hello() 878 if (!CBS_write_bytes(&client_random, s->s3->client_random, in ssl3_get_client_hello() 879 sizeof(s->s3->client_random), NULL)) in ssl3_get_client_hello() 1451 if (!CBB_add_bytes(&cbb_signed_params, s->s3->client_random, in ssl3_send_server_key_exchange()
|
| D | tls12_key_schedule.c | 242 if (!CBB_add_bytes(&cbb, s->s3->client_random, SSL3_RANDOM_SIZE)) in tls12_exporter()
|
| D | t1_enc.c | 295 s->s3->client_random, SSL3_RANDOM_SIZE, in tls1_generate_key_block()
|
| D | tls13_client.c | 59 arc4random_buf(s->s3->client_random, SSL3_RANDOM_SIZE); in tls13_client_init() 100 if (!CBB_add_bytes(cbb, s->s3->client_random, SSL3_RANDOM_SIZE)) in tls13_client_hello_build()
|
| D | ssl_local.h | 1091 unsigned char client_random[SSL3_RANDOM_SIZE]; member
|
| D | ssl_lib.c | 3095 size_t len = sizeof(s->s3->client_random); in SSL_get_client_random() 3103 memcpy(out, s->s3->client_random, len); in SSL_get_client_random()
|