Lines Matching +full:int +full:- +full:property

13 - X509_STORE manipulation
21 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x);
22 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x);
23 int X509_STORE_set_depth(X509_STORE *store, int depth);
24 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags);
25 int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
26 int X509_STORE_set_trust(X509_STORE *ctx, int trust);
31 int X509_STORE_set_default_paths_ex(X509_STORE *ctx, OSSL_LIB_CTX *libctx,
33 int X509_STORE_set_default_paths(X509_STORE *ctx);
34 int X509_STORE_load_file_ex(X509_STORE *ctx, const char *file,
36 int X509_STORE_load_file(X509_STORE *ctx, const char *file);
37 int X509_STORE_load_path(X509_STORE *ctx, const char *dir);
38 int X509_STORE_load_store_ex(X509_STORE *ctx, const char *uri,
40 int X509_STORE_load_store(X509_STORE *ctx, const char *uri);
41 int X509_STORE_load_locations_ex(X509_STORE *ctx, const char *file,
44 int X509_STORE_load_locations(X509_STORE *ctx,
57 L<openssl-verification-options(1)/Certification Path Building> and
58 L<openssl-verification-options(1)/Certification Path Validation>.
69 used to instantiate a single-use B<X509_STORE_CTX> for each chain-building
70 and verification operation. That process includes providing the end-entity
72 that may be used in chain-building. As such, it is expected that the
99 B<X509_STORE> from a given file. The library context I<libctx> and property
103 uses NULL for the library context I<libctx> and property query I<propq>.
112 property query I<propq> are used when fetching algorithms from providers.
115 uses NULL for the library context I<libctx> and property query I<propq>.
124 but uses NULL for the library context I<libctx> and property query I<propq>.
129 paths. The library context I<libctx> and property query I<propq> are used when
134 context I<libctx> and property query I<propq>.
165 Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.