Searched refs:X509_STORE (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_d2.c63 int X509_STORE_set_default_paths(X509_STORE *ctx)
81 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
H A Dx509_lu.c178 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 *ct
[all...]
/external/openssl/crypto/x509/
H A Dx509_d2.c65 int X509_STORE_set_default_paths(X509_STORE *ctx)
83 int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
H A Dx509_vfy.h101 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_ne
[all...]
H A Dx509_lu.c178 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 *ct
[all...]
/external/openssl/include/openssl/
H A Dx509_vfy.h101 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_ne
[all...]
H A Dossl_typ.h159 typedef struct x509_store_st X509_STORE; typedef in typeref:struct:x509_store_st
H A Dcms.h169 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
173 X509_STORE *store, unsigned int flags);
H A Dpkcs7.h317 int PKCS7_dataVerify(X509_STORE *cert_store, X509_STORE_CTX *ctx,
363 int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store,
H A Docsp.h463 int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, X509_STORE *store, unsigned long flags);
564 X509_STORE *st, unsigned long flags);
H A Dts.h612 X509_STORE *store, X509 **signer_out);
658 X509_STORE *store;
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dx509_vfy.h96 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_ne
[all...]
H A Dbase.h210 typedef struct x509_store_st X509_STORE; typedef in typeref:struct:x509_store_st
/external/openssl/crypto/ocsp/
H A Docsp_vfy.c64 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)
H A Docsp.h463 int OCSP_request_verify(OCSP_REQUEST *req, STACK_OF(X509) *certs, X509_STORE *store, unsigned long flags);
564 X509_STORE *st, unsigned long flags);
/external/openssl/apps/
H A Dverify.c73 static int check(X509_STORE *ctx, char *file,
88 X509_STORE *cert_ctx=NULL;
266 static int check(X509_STORE *ctx, char *file,
H A Dapps.h258 X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath);
/external/chromium_org/net/cert/
H A Dx509_certificate.h31 typedef struct x509_store_st X509_STORE; typedef in typeref:struct:x509_store_st
310 static X509_STORE* cert_store();
H A Dx509_certificate_openssl.cc148 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/
H A Dossl_typ.h159 typedef struct x509_store_st X509_STORE; typedef in typeref:struct:x509_store_st
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dssl_cert.c596 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;
H A Dssl_locl.h516 /* 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);
/external/openssl/crypto/cms/
H A Dcms_smime.c280 X509_STORE *store,
317 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags)
450 X509_STORE *store, unsigned int flags)
H A Dcms.h169 X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags);
173 X509_STORE *store, unsigned int flags);
/external/openssl/crypto/pkcs7/
H A Dpkcs7.h317 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 452 milliseconds

12