Lines Matching refs:ctx
15 int X509_STORE_set_default_paths_ex(X509_STORE *ctx, OSSL_LIB_CTX *libctx,
20 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file());
25 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir());
30 lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store());
40 int X509_STORE_set_default_paths(X509_STORE *ctx)
42 return X509_STORE_set_default_paths_ex(ctx, NULL, NULL);
45 int X509_STORE_load_file_ex(X509_STORE *ctx, const char *file,
51 || (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_file())) == NULL
59 int X509_STORE_load_file(X509_STORE *ctx, const char *file)
61 return X509_STORE_load_file_ex(ctx, file, NULL, NULL);
64 int X509_STORE_load_path(X509_STORE *ctx, const char *path)
69 || (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_hash_dir())) == NULL
76 int X509_STORE_load_store_ex(X509_STORE *ctx, const char *uri,
82 || (lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store())) == NULL
89 int X509_STORE_load_store(X509_STORE *ctx, const char *uri)
91 return X509_STORE_load_store_ex(ctx, uri, NULL, NULL);
94 int X509_STORE_load_locations_ex(X509_STORE *ctx, const char *file,
100 if (file != NULL && !X509_STORE_load_file_ex(ctx, file, libctx, propq))
102 if (path != NULL && !X509_STORE_load_path(ctx, path))
107 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
110 return X509_STORE_load_locations_ex(ctx, file, path, NULL, NULL);