]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - doc/man3/X509_STORE_add_cert.pod
x509_lu.c and x509_vfy.c: improve coding style, comments, and related doc
[thirdparty/openssl.git] / doc / man3 / X509_STORE_add_cert.pod
index f53a3456218536faf3da26f01a9f3cd91411076d..642da09ff2c43336ec4b4c6a5e7f3781a2ebe9cf 100644 (file)
@@ -18,30 +18,30 @@ X509_STORE_load_locations_ex, X509_STORE_load_locations
 
  typedef x509_store_st X509_STORE;
 
- int X509_STORE_add_cert(X509_STORE *ctx, X509 *x);
- int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x);
+ int X509_STORE_add_cert(X509_STORE *xs, X509 *x);
+ int X509_STORE_add_crl(X509_STORE *xs, X509_CRL *x);
  int X509_STORE_set_depth(X509_STORE *store, int depth);
- int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags);
- int X509_STORE_set_purpose(X509_STORE *ctx, int purpose);
- int X509_STORE_set_trust(X509_STORE *ctx, int trust);
+ int X509_STORE_set_flags(X509_STORE *xs, unsigned long flags);
+ int X509_STORE_set_purpose(X509_STORE *xs, int purpose);
+ int X509_STORE_set_trust(X509_STORE *xs, int trust);
 
  X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *store,
                                     X509_LOOKUP_METHOD *meth);
 
- int X509_STORE_set_default_paths_ex(X509_STORE *ctx, OSSL_LIB_CTX *libctx,
+ int X509_STORE_set_default_paths_ex(X509_STORE *xs, OSSL_LIB_CTX *libctx,
                                      const char *propq);
- int X509_STORE_set_default_paths(X509_STORE *ctx);
- int X509_STORE_load_file_ex(X509_STORE *ctx, const char *file,
+ int X509_STORE_set_default_paths(X509_STORE *xs);
+ int X509_STORE_load_file_ex(X509_STORE *xs, const char *file,
                              OSSL_LIB_CTX *libctx, const char *propq);
- int X509_STORE_load_file(X509_STORE *ctx, const char *file);
- int X509_STORE_load_path(X509_STORE *ctx, const char *dir);
- int X509_STORE_load_store_ex(X509_STORE *ctx, const char *uri,
+ int X509_STORE_load_file(X509_STORE *xs, const char *file);
+ int X509_STORE_load_path(X509_STORE *xs, const char *dir);
+ int X509_STORE_load_store_ex(X509_STORE *xs, const char *uri,
                               OSSL_LIB_CTX *libctx, const char *propq);
- int X509_STORE_load_store(X509_STORE *ctx, const char *uri);
- int X509_STORE_load_locations_ex(X509_STORE *ctx, const char *file,
+ int X509_STORE_load_store(X509_STORE *xs, const char *uri);
+ int X509_STORE_load_locations_ex(X509_STORE *xs, const char *file,
                                   const char *dir, OSSL_LIB_CTX *libctx,
                                   const char *propq);
- int X509_STORE_load_locations(X509_STORE *ctx,
+ int X509_STORE_load_locations(X509_STORE *xs,
                                const char *file, const char *dir);
 
 =head1 DESCRIPTION