• Home
  • Raw
  • Download

Lines Matching refs:dsize

1066 			int dsize;   in ssl_parse_clienthello_tlsext()  local
1073 n2s(data,dsize); in ssl_parse_clienthello_tlsext()
1075 if (dsize > size ) in ssl_parse_clienthello_tlsext()
1082 while (dsize > 3) in ssl_parse_clienthello_tlsext()
1086 dsize -= 3; in ssl_parse_clienthello_tlsext()
1088 if (len > dsize) in ssl_parse_clienthello_tlsext()
1136 dsize -= len; in ssl_parse_clienthello_tlsext()
1138 if (dsize != 0) in ssl_parse_clienthello_tlsext()
1293 int dsize; in ssl_parse_clienthello_tlsext() local
1300 n2s(data,dsize); in ssl_parse_clienthello_tlsext()
1302 if (dsize != size || dsize & 1) in ssl_parse_clienthello_tlsext()
1307 tls1_process_sigalgs(s, data, dsize); in ssl_parse_clienthello_tlsext()
1324 int dsize; in ssl_parse_clienthello_tlsext() local
1326 n2s(data,dsize); in ssl_parse_clienthello_tlsext()
1328 if (dsize > size ) in ssl_parse_clienthello_tlsext()
1333 while (dsize > 0) in ssl_parse_clienthello_tlsext()
1337 if (dsize < 4) in ssl_parse_clienthello_tlsext()
1343 dsize -= 2 + idsize; in ssl_parse_clienthello_tlsext()
1345 if (dsize < 0) in ssl_parse_clienthello_tlsext()
1388 n2s(data,dsize); in ssl_parse_clienthello_tlsext()
1390 if (dsize != size) in ssl_parse_clienthello_tlsext()
1396 if (dsize > 0) in ssl_parse_clienthello_tlsext()
1406 &sdata, dsize); in ssl_parse_clienthello_tlsext()
1408 || (data + dsize != sdata)) in ssl_parse_clienthello_tlsext()
2592 void tls1_process_sigalgs(SSL *s, const unsigned char *data, int dsize) in tls1_process_sigalgs() argument
2604 for (i = 0; i < dsize; i += 2) in tls1_process_sigalgs()