Home
last modified time | relevance | path

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

/freebsd-11-stable/crypto/openssl/crypto/x509/
HDby_file.c155 i = X509_STORE_add_cert(ctx->store_ctx, x); in X509_load_cert_file()
169 i = X509_STORE_add_cert(ctx->store_ctx, x); in X509_load_cert_file()
214 i = X509_STORE_add_crl(ctx->store_ctx, x); in X509_load_crl_file()
228 i = X509_STORE_add_crl(ctx->store_ctx, x); in X509_load_crl_file()
266 X509_STORE_add_cert(ctx->store_ctx, itmp->x509); in X509_load_cert_crl_file()
270 X509_STORE_add_crl(ctx->store_ctx, itmp->crl); in X509_load_cert_crl_file()
HDby_dir.c381 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject()
383 tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j); in get_cert_by_subject()
HDx509_lu.c77 ret->store_ctx = NULL; in X509_LOOKUP_new()
296 lu->store_ctx = v; in X509_STORE_add_lookup()
HDx509_vfy.h228 X509_STORE *store_ctx; /* who owns us */ member
/freebsd-11-stable/crypto/openssl/apps/
HDpkcs12.c911 X509_STORE_CTX store_ctx; in get_cert_chain() local
915 if (!X509_STORE_CTX_init(&store_ctx, store, cert, NULL)) { in get_cert_chain()
920 if (X509_verify_cert(&store_ctx) > 0) in get_cert_chain()
921 chn = X509_STORE_CTX_get1_chain(&store_ctx); in get_cert_chain()
922 else if ((i = X509_STORE_CTX_get_error(&store_ctx)) == 0) in get_cert_chain()
925 X509_STORE_CTX_cleanup(&store_ctx); in get_cert_chain()
/freebsd-11-stable/crypto/heimdal/lib/hx509/
HDks_file.c519 struct store_ctx { struct
527 struct store_ctx *sc = ctx; in store_func() argument
565 struct store_ctx sc; in file_store()
/freebsd-11-stable/contrib/serf/buckets/
HDssl_buckets.c587 validate_server_certificate(int cert_valid, X509_STORE_CTX *store_ctx) in validate_server_certificate() argument
596 ssl = X509_STORE_CTX_get_ex_data(store_ctx, in validate_server_certificate()
600 server_cert = X509_STORE_CTX_get_current_cert(store_ctx); in validate_server_certificate()
601 depth = X509_STORE_CTX_get_error_depth(store_ctx); in validate_server_certificate()
606 err = X509_STORE_CTX_get_error(store_ctx); in validate_server_certificate()
684 chain = X509_STORE_CTX_get_chain(store_ctx); in validate_server_certificate()