Lines Matching refs:cert_ctx
473 X509_STORE *cert_ctx = NULL; local
479 cert_ctx = X509_STORE_new();
480 if (cert_ctx == NULL)
484 X509_STORE_set_verify_cb_func(cert_ctx, cb_check_cert_local);
486 X509_STORE_set_verify_cb_func(cert_ctx, cb_check_cert_remote);
506 X509_STORE_add_cert(cert_ctx, info->x509);
509 X509_STORE_add_crl(cert_ctx, info->crl);
515 lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_file());
522 lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_hash_dir());
543 X509_STORE_CTX_init(csc, cert_ctx, x509, NULL);
560 if (cert_ctx != NULL)
561 X509_STORE_free(cert_ctx);