Searched refs:currentvalpos (Results 1 – 1 of 1) sorted by relevance
1178 size_t vallen, currentvalpos; in tls1_export_keying_material() local1203 currentvalpos = 0; in tls1_export_keying_material()1204 memcpy(val + currentvalpos, (unsigned char *)label, llen); in tls1_export_keying_material()1205 currentvalpos += llen; in tls1_export_keying_material()1206 memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()1207 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()1208 memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()1209 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()1212 val[currentvalpos] = (contextlen >> 8) & 0xff; in tls1_export_keying_material()1213 currentvalpos++; in tls1_export_keying_material()[all …]