Home
last modified time | relevance | path

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

/src/crypto/openssl/ssl/
H A Dt1_enc.c439 size_t vallen = 0, currentvalpos; in tls1_export_keying_material() local
464 currentvalpos = 0; in tls1_export_keying_material()
465 memcpy(val + currentvalpos, (unsigned char *)label, llen); in tls1_export_keying_material()
466 currentvalpos += llen; in tls1_export_keying_material()
467 memcpy(val + currentvalpos, s->s3.client_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()
468 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()
469 memcpy(val + currentvalpos, s->s3.server_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()
470 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()
473 val[currentvalpos] = (contextlen >> 8) & 0xff; in tls1_export_keying_material()
474 currentvalpos++; in tls1_export_keying_material()
[all …]