HomeSort by relevance Sort by last modified time
    Searched refs:X509_STORE (Results 1 - 25 of 49) sorted by null

1 2

  /system/core/fastbootd/
secure.h 43 X509_STORE *cert_store_from_path(const char*stream);
45 static inline void cert_release_store(X509_STORE *store) {
50 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd);
secure.c 55 X509_STORE *cert_store_from_path(const char *path) {
57 X509_STORE *store;
131 int cert_verify(BIO *content, CMS_ContentInfo *content_info, X509_STORE *store, int *out_fd) {
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_d2.c 63 int X509_STORE_set_default_paths(X509_STORE *ctx)
81 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
x509_lu.c 178 X509_STORE *X509_STORE_new(void)
180 X509_STORE *ret;
182 if ((ret=(X509_STORE *)OPENSSL_malloc(sizeof(X509_STORE))) == NULL)
229 void X509_STORE_free(X509_STORE *vfy)
241 REF_PRINT("X509_STORE",vfy);
268 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m)
303 X509_STORE *ctx=vs->ctx;
345 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
378 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x
    [all...]
  /external/openssl/crypto/x509/
x509_d2.c 65 int X509_STORE_set_default_paths(X509_STORE *ctx)
83 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
x509_vfy.h 101 SSL_CTX -> X509_STORE
108 ->X509_STORE
110 The X509_STORE holds the tables etc for verification stuff.
112 The X509_STORE has X509_LOOKUPs for looking up certs.
113 The X509_STORE then calls a function to actually verify the
209 } /* X509_STORE */;
211 int X509_STORE_set_depth(X509_STORE *store, int depth);
224 X509_STORE *store_ctx; /* who owns us */
232 X509_STORE *ctx;
412 X509_STORE *X509_STORE_new(void )
    [all...]
x509_lu.c 178 X509_STORE *X509_STORE_new(void)
180 X509_STORE *ret;
182 if ((ret=(X509_STORE *)OPENSSL_malloc(sizeof(X509_STORE))) == NULL)
232 void X509_STORE_free(X509_STORE *vfy)
257 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m)
292 X509_STORE *ctx=vs->ctx;
334 int X509_STORE_add_cert(X509_STORE *ctx, X509 *x)
367 int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x)
683 int X509_STORE_set_flags(X509_STORE *ctx, unsigned long flags
    [all...]
  /external/openssl/include/openssl/
x509_vfy.h 101 SSL_CTX -> X509_STORE
108 ->X509_STORE
110 The X509_STORE holds the tables etc for verification stuff.
112 The X509_STORE has X509_LOOKUPs for looking up certs.
113 The X509_STORE then calls a function to actually verify the
209 } /* X509_STORE */;
211 int X509_STORE_set_depth(X509_STORE *store, int depth);
224 X509_STORE *store_ctx; /* who owns us */
232 X509_STORE *ctx;
412 X509_STORE *X509_STORE_new(void )
    [all...]
ossl_typ.h 159 typedef struct x509_store_st X509_STORE;
cms.h 169 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
173 X509_STORE *store, unsigned int flags);
pkcs7.h 317 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
363 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,
  /external/chromium_org/third_party/boringssl/src/include/openssl/
x509_vfy.h 96 SSL_CTX -> X509_STORE
103 ->X509_STORE
105 The X509_STORE holds the tables etc for verification stuff.
107 The X509_STORE has X509_LOOKUPs for looking up certs.
108 The X509_STORE then calls a function to actually verify the
207 } /* X509_STORE */;
209 OPENSSL_EXPORT int X509_STORE_set_depth(X509_STORE *store, int depth);
222 X509_STORE *store_ctx; /* who owns us */
230 X509_STORE *ctx;
433 OPENSSL_EXPORT X509_STORE *X509_STORE_new(void )
    [all...]
base.h 210 typedef struct x509_store_st X509_STORE;
  /external/openssl/crypto/ocsp/
ocsp_vfy.c 64 X509_STORE *st, unsigned long flags);
71 X509_STORE *st, unsigned long flags);
76 X509_STORE *st, unsigned long flags)
167 X509_STORE *st, unsigned long flags)
363 int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, X509_STORE *store, unsigned long flags)
433 X509_STORE *st, unsigned long flags)
  /external/openssl/apps/
verify.c 73 static int check(X509_STORE *ctx, char *file,
88 X509_STORE *cert_ctx=NULL;
266 static int check(X509_STORE *ctx, char *file,
apps.h 258 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath);
  /system/core/fastbootd/commands/
flash.c 125 X509_STORE *store = NULL;
  /external/chromium_org/net/cert/
x509_certificate.h 31 typedef struct x509_store_st X509_STORE;
310 static X509_STORE* cert_store();
x509_certificate_openssl.cc 148 X509_STORE* store() const { return store_.get(); }
164 crypto::ScopedOpenSSL<X509_STORE, X509_STORE_free>::Type store_;
304 X509_STORE* X509Certificate::cert_store() {
  /external/openssl/crypto/
ossl_typ.h 159 typedef struct x509_store_st X509_STORE;
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_cert.c 596 X509_STORE *verify_store;
972 X509_STORE *chain_store;
1046 int ssl_build_cert_chain(CERT *c, X509_STORE *chain_store, int flags)
1153 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref)
1155 X509_STORE **pstore;
ssl_locl.h 516 /* Optional X509_STORE for chain building or certificate validation
519 X509_STORE *chain_store;
520 X509_STORE *verify_store;
837 int ssl_build_cert_chain(CERT *c, X509_STORE *chain_store, int flags);
838 int ssl_cert_set_cert_store(CERT *c, X509_STORE *store, int chain, int ref);
    [all...]
  /external/openssl/crypto/cms/
cms_smime.c 280 X509_STORE *store,
317 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags)
450 X509_STORE *store, unsigned int flags)
cms.h 169 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
173 X509_STORE *store, unsigned int flags);
  /external/openssl/crypto/pkcs7/
pkcs7.h 317 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
363 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,

Completed in 3064 milliseconds

1 2