Home
last modified time | relevance | path

Searched refs:client_random (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/lib/libssl/
Dtls12_lib.c110 s->s3->client_random, SSL3_RANDOM_SIZE, NULL, 0, in tls12_derive_master_secret()
Dtls13_server.c147 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()
Dssl_clnt.c269 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()
Dssl_srvr.c778 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()
Dtls12_key_schedule.c242 if (!CBB_add_bytes(&cbb, s->s3->client_random, SSL3_RANDOM_SIZE)) in tls12_exporter()
Dt1_enc.c295 s->s3->client_random, SSL3_RANDOM_SIZE, in tls1_generate_key_block()
Dtls13_client.c59 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()
Dssl_local.h1091 unsigned char client_random[SSL3_RANDOM_SIZE]; member
Dssl_lib.c3095 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()