Lines Matching refs:enclen
46 long enclen; in test_certs() local
64 enclen = i2d(cert, NULL); in test_certs()
65 if (len != enclen) { in test_certs()
67 enclen, name, len); in test_certs()
76 enclen = i2d(cert, &bufp); in test_certs()
77 if (len != enclen) { in test_certs()
79 enclen, name, len); in test_certs()
83 enclen = (long) (bufp - buf); in test_certs()
84 if (enclen != len) { in test_certs()
95 reuse = d2i(NULL, &p, enclen); in test_certs()
111 enclen = i2d(cert, &buf); in test_certs()
112 if (len != enclen) { in test_certs()
114 enclen, name, len); in test_certs()
130 enclen = i2d(cert, &buf); in test_certs()
131 if (enclen > len) { in test_certs()
133 enclen, name, len); in test_certs()
137 if (memcmp(buf, data, enclen) != 0) { in test_certs()