Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/openssl/ssl/
Dt1_enc.c529 size_t vallen = 0, currentvalpos; in tls1_export_keying_material() local
545 currentvalpos = 0; in tls1_export_keying_material()
546 memcpy(val + currentvalpos, (unsigned char *)label, llen); in tls1_export_keying_material()
547 currentvalpos += llen; in tls1_export_keying_material()
548 memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()
549 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()
550 memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()
551 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()
554 val[currentvalpos] = (contextlen >> 8) & 0xff; in tls1_export_keying_material()
555 currentvalpos++; in tls1_export_keying_material()
[all …]