Home | History | Annotate | Download | only in ssl

Lines Matching full:currentvalpos

1124 	size_t vallen, currentvalpos;
1147 currentvalpos = 0;
1148 memcpy(val + currentvalpos, (unsigned char *) label, llen);
1149 currentvalpos += llen;
1150 memcpy(val + currentvalpos, s->s3->client_random, SSL3_RANDOM_SIZE);
1151 currentvalpos += SSL3_RANDOM_SIZE;
1152 memcpy(val + currentvalpos, s->s3->server_random, SSL3_RANDOM_SIZE);
1153 currentvalpos += SSL3_RANDOM_SIZE;
1157 val[currentvalpos] = (contextlen >> 8) & 0xff;
1158 currentvalpos++;
1159 val[currentvalpos] = contextlen & 0xff;
1160 currentvalpos++;
1163 memcpy(val + currentvalpos, context, contextlen);