/external/openssl/include/openssl/ |
D | x509_vfy.h | 195 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ 196 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ 197 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */ 198 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */ 199 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */ 200 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */ 201 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */ 202 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */ 203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm); 204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm); [all …]
|
D | ossl_typ.h | 156 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
|
D | ssl.h | 837 int (*app_verify_callback)(X509_STORE_CTX *, void *); 893 …int (*default_verify_callback)(int ok,X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL… 1236 int (*verify_callback)(int ok,X509_STORE_CTX *ctx); /* fail if callback returns 0 */ 1711 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *); 1713 int (*callback)(int ok,X509_STORE_CTX *ctx)); 1792 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *); 1794 int (*callback)(int, X509_STORE_CTX *)); 1796 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg);
|
D | x509v3.h | 848 int v3_asid_validate_path(X509_STORE_CTX *); 849 int v3_addr_validate_path(X509_STORE_CTX *);
|
/external/openssl/crypto/x509/ |
D | x509_vfy.h | 195 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ 196 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ 197 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */ 198 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */ 199 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */ 200 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */ 201 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */ 202 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */ 203 STACK_OF(X509) * (*lookup_certs)(X509_STORE_CTX *ctx, X509_NAME *nm); 204 STACK_OF(X509_CRL) * (*lookup_crls)(X509_STORE_CTX *ctx, X509_NAME *nm); [all …]
|
D | x509_vfy.c | 111 static int null_callback(int ok,X509_STORE_CTX *e); 112 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); 113 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x); 114 static int check_chain_extensions(X509_STORE_CTX *ctx); 115 static int check_name_constraints(X509_STORE_CTX *ctx); 116 static int check_trust(X509_STORE_CTX *ctx); 117 static int check_revocation(X509_STORE_CTX *ctx); 118 static int check_cert(X509_STORE_CTX *ctx); 119 static int check_policy(X509_STORE_CTX *ctx); 121 static int get_crl_score(X509_STORE_CTX *ctx, X509 **pissuer, [all …]
|
D | x509_lu.c | 289 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, in X509_STORE_get_by_subject() 488 STACK_OF(X509)* X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm) in STACK_OF() 537 STACK_OF(X509_CRL)* X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm) in STACK_OF() 624 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x) in X509_STORE_CTX_get1_issuer() 710 int (*verify_cb)(int, X509_STORE_CTX *)) in X509_STORE_set_verify_cb() argument
|
/external/openssl/crypto/pkcs7/ |
D | dec.c | 67 int verify_callback(int ok, X509_STORE_CTX *ctx); 81 X509_STORE_CTX cert_ctx; 200 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback()
|
D | verify.c | 67 int verify_callback(int ok, X509_STORE_CTX *ctx); 78 X509_STORE_CTX cert_ctx; 215 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | openssladapter.h | 36 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef 81 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
|
D | opensslstreamadapter.h | 37 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef 141 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
|
/external/openssl/apps/ |
D | verify.c | 72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx); 261 X509_STORE_CTX *csc; in check() 300 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx) in cb()
|
D | s_apps.h | 153 int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
|
D | smime.c | 73 static int smime_cb(int ok, X509_STORE_CTX *ctx); 843 static int smime_cb(int ok, X509_STORE_CTX *ctx) in smime_cb()
|
D | x509.c | 156 static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx); 1156 X509_STORE_CTX xsc; in x509_certify() 1222 static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx) in callb()
|
D | apps.h | 315 void policies_print(BIO *out, X509_STORE_CTX *ctx);
|
D | crl.c | 114 X509_STORE_CTX ctx; in MAIN()
|
/external/openssl/crypto/ocsp/ |
D | ocsp_vfy.c | 80 X509_STORE_CTX ctx; in OCSP_basic_verify() 365 X509_STORE_CTX ctx; in OCSP_request_verify()
|
/external/openssl/crypto/ |
D | ossl_typ.h | 156 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
|
/external/openssl/ssl/ |
D | ssl.h | 837 int (*app_verify_callback)(X509_STORE_CTX *, void *); 893 …int (*default_verify_callback)(int ok,X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL… 1236 int (*verify_callback)(int ok,X509_STORE_CTX *ctx); /* fail if callback returns 0 */ 1711 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *); 1713 int (*callback)(int ok,X509_STORE_CTX *ctx)); 1792 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *); 1794 int (*callback)(int, X509_STORE_CTX *)); 1796 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg);
|
D | ssltest.c | 220 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx); 225 static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg); 1896 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() 2270 static int MS_CALLBACK app_verify_callback(X509_STORE_CTX *ctx, void *arg) in app_verify_callback()
|
/external/chromium/net/test/ |
D | openssl_helper.cc | 26 static int verify_cb(int preverify_ok, X509_STORE_CTX *ctx) { in verify_cb()
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 121 static int cb_check_cert_local __P((int, X509_STORE_CTX *)); 122 static int cb_check_cert_remote __P((int, X509_STORE_CTX *)); 464 X509_STORE_CTX *csc; 563 X509_STORE_CTX *ctx; 610 X509_STORE_CTX *ctx;
|
/external/openssl/crypto/x509v3/ |
D | v3_asid.c | 750 static int v3_asid_validate_path_internal(X509_STORE_CTX *ctx, in v3_asid_validate_path_internal() 868 int v3_asid_validate_path(X509_STORE_CTX *ctx) in v3_asid_validate_path()
|
D | x509v3.h | 848 int v3_asid_validate_path(X509_STORE_CTX *); 849 int v3_addr_validate_path(X509_STORE_CTX *);
|