Searched refs:currentvalpos (Results 1 – 1 of 1) sorted by relevance
1124 size_t vallen, currentvalpos; in tls1_export_keying_material() local1147 currentvalpos = 0; in tls1_export_keying_material()1148 memcpy(val + currentvalpos, (unsigned char *) label, llen); in tls1_export_keying_material()1149 currentvalpos += llen; in tls1_export_keying_material()1150 memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()1151 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()1152 memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE); in tls1_export_keying_material()1153 currentvalpos += SSL3_RANDOM_SIZE; in tls1_export_keying_material()1157 val[currentvalpos] = (contextlen >> 8) & 0xff; in tls1_export_keying_material()1158 currentvalpos++; in tls1_export_keying_material()[all …]