Home
last modified time | relevance | path

Searched refs:verify_depth (Results 1 – 7 of 7) sorted by relevance

/trueos/crypto/openssl/apps/
HDs_time.c113 extern int verify_depth;
212 verify_depth = 0; in parseArgs()
244 verify_depth = atoi(*(++argv)); in parseArgs()
245 BIO_printf(bio_err, "verify depth is %d\n", verify_depth); in parseArgs()
HDs_cb.c128 int verify_depth = 0; variable
153 if (verify_depth >= depth) { in verify_callback()
HDs_server.c289 extern int verify_depth, verify_return_error;
1068 verify_depth = 0; in MAIN()
1087 verify_depth = atoi(*(++argv)); in MAIN()
1088 BIO_printf(bio_err, "verify depth is %d\n", verify_depth); in MAIN()
1095 verify_depth = atoi(*(++argv)); in MAIN()
1098 verify_depth); in MAIN()
HDs_client.c202 extern int verify_depth;
715 verify_depth = 0; in MAIN()
743 verify_depth = atoi(*(++argv)); in MAIN()
744 BIO_printf(bio_err, "verify depth is %d\n", verify_depth); in MAIN()
/trueos/crypto/openssl/doc/ssl/
HDSSL_CTX_set_verify.pod185 int verify_depth;
214 * that whenever the "depth>verify_depth" condition is met, we
220 if (depth > mydata->verify_depth) {
261 * Let the verify_callback catch the verify_depth error so that we get
264 SSL_CTX_set_verify_depth(verify_depth + 1);
270 mydata.verify_depth = verify_depth; ...
/trueos/crypto/openssl/ssl/
HDssl_lib.c333 s->verify_depth = ctx->verify_depth; in SSL_new()
1774 ret->verify_depth = -1; /* Don't impose a limit (but x509_lu.c does) */ in IMPLEMENT_LHASH_HASH_FN()
/trueos/crypto/openssl/
HDCHANGES9332 *) Support verify_depth from the SSL API.