Home | History | Annotate | Download | only in apps

Lines Matching refs:cert_ctx

88 	X509_STORE *cert_ctx=NULL;
95 cert_ctx=X509_STORE_new();
96 if (cert_ctx == NULL) goto end;
97 X509_STORE_set_verify_cb(cert_ctx,cb);
175 X509_STORE_set1_param(cert_ctx, vpm);
177 lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_file());
188 lookup=X509_STORE_add_lookup(cert_ctx,X509_LOOKUP_hash_dir());
225 if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e);
228 check(cert_ctx,argv[i], untrusted, trusted, crls, e);
246 if (cert_ctx != NULL) X509_STORE_free(cert_ctx);