Searched refs:X509_STORE_CTX (Results 1 - 25 of 66) sorted by relevance

123

/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509_vfy_apple.h50 int X509_verify_cert(X509_STORE_CTX *ctx);
72 int X509_verify_cert_orig(X509_STORE_CTX *ctx);
H A Dx509_vfy.h105 SSL -> X509_STORE_CTX
109 A X509_STORE_CTX is used while validating a single certificate.
193 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
194 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
195 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */
196 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */
197 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
198 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
199 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
200 int (*cert_crl)(X509_STORE_CTX *ct
[all...]
H A Dx509_vfy.c80 static int null_callback(int ok,X509_STORE_CTX *e);
81 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
82 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x);
83 static int check_chain_extensions(X509_STORE_CTX *ctx);
84 static int check_trust(X509_STORE_CTX *ctx);
85 static int check_revocation(X509_STORE_CTX *ctx);
86 static int check_cert(X509_STORE_CTX *ctx);
87 static int check_policy(X509_STORE_CTX *ctx);
88 static int internal_verify(X509_STORE_CTX *ctx);
92 static int null_callback(int ok, X509_STORE_CTX *
[all...]
H A Dx509_vfy_apple.c41 X509_verify_cert(X509_STORE_CTX *ctx)
H A Dx509_lu.c287 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name,
493 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dx509_vfy.h105 SSL -> X509_STORE_CTX
109 A X509_STORE_CTX is used while validating a single certificate.
193 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
194 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
195 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */
196 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */
197 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
198 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
199 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
200 int (*cert_crl)(X509_STORE_CTX *ct
[all...]
H A Dossl_typ.h144 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef in typeref:struct:x509_store_ctx_st
H A Dssl.h710 int (*app_verify_callback)(X509_STORE_CTX *, void *);
766 int (*default_verify_callback)(int ok,X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL */
1000 int (*verify_callback)(int ok,X509_STORE_CTX *ctx); /* fail if callback returns 0 */
1386 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *);
1388 int (*callback)(int ok,X509_STORE_CTX *ctx));
1460 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *);
1462 int (*callback)(int, X509_STORE_CTX *));
1464 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Dx509_vfy.h118 SSL -> X509_STORE_CTX
122 A X509_STORE_CTX is used while validating a single certificate.
171 typedef struct x509_store_state_st X509_STORE_CTX; typedef in typeref:struct:x509_store_state_st
188 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
189 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
193 int depth; /* how deep to look (still unused -- X509_STORE_CTX's depth is used) */
215 struct x509_store_state_st /* X509_STORE_CTX */
313 X509_STORE_CTX *X509_STORE_CTX_new(void);
314 void X509_STORE_CTX_free(X509_STORE_CTX *ctx);
315 void X509_STORE_CTX_init(X509_STORE_CTX *ct
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_x509.h108 VALUE ossl_x509stctx_new(X509_STORE_CTX *);
110 X509_STORE_CTX *GetX509StCtxtPtr(VALUE);
H A Dossl_x509store.c37 Data_Get_Struct((obj), X509_STORE_CTX, (ctx)); \
345 static void ossl_x509stctx_free(X509_STORE_CTX*);
348 ossl_x509stctx_new(X509_STORE_CTX *ctx)
370 ossl_x509stctx_free(X509_STORE_CTX *ctx)
382 X509_STORE_CTX *ctx;
402 X509_STORE_CTX *ctx;
434 X509_STORE_CTX *ctx;
448 X509_STORE_CTX *ctx;
474 X509_STORE_CTX *ctx;
484 X509_STORE_CTX *ct
[all...]
H A Dossl.h177 int ossl_verify_cb(int, X509_STORE_CTX *);
/macosx-10.10/OpenSSL098-52/src/crypto/pkcs7/
H A Ddec.c67 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)
H A Dverify.c67 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)
/macosx-10.10/OpenSSL098-52/src/apps/
H A Ds_apps.h153 int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
H A Dverify.c72 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx);
243 X509_STORE_CTX *csc;
327 static int MS_CALLBACK cb(int ok, X509_STORE_CTX *ctx)
H A Dapps.h340 void policies_print(BIO *out, X509_STORE_CTX *ctx);
/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_engine_ocsp.c105 static OCSP_REQUEST *create_request(X509_STORE_CTX *ctx, X509 *cert,
126 static int verify_ocsp_status(X509 *cert, X509_STORE_CTX *ctx, conn_rec *c,
248 int modssl_verify_ocsp(X509_STORE_CTX *ctx, SSLSrvConfigRec *sc,
H A Dssl_private.h764 int ssl_callback_SSLVerify(int, X509_STORE_CTX *);
765 int ssl_callback_SSLVerify_CRL(int, X509_STORE_CTX *, conn_rec *);
912 int modssl_verify_ocsp(X509_STORE_CTX *ctx, SSLSrvConfigRec *sc,
/macosx-10.10/OpenSSL098-52/src/crypto/
H A Dossl_typ.h144 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef in typeref:struct:x509_store_ctx_st
/macosx-10.10/OpenSSL098-52/src/demos/tunala/
H A Dcb.c61 int cb_ssl_verify(int ok, X509_STORE_CTX *ctx)
H A Dtunala.h148 int cb_ssl_verify(int ok, X509_STORE_CTX *ctx);
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DSSLHandle.cpp152 bool pemData(X509_STORE_CTX* ctx, ListHashSet<String>& certificates)
184 static int certVerifyCallback(int ok, X509_STORE_CTX* ctx)
/macosx-10.10/OpenSSL098-52/src/crypto/ocsp/
H A Docsp_vfy.c80 X509_STORE_CTX ctx;
367 X509_STORE_CTX ctx;
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dssl.h710 int (*app_verify_callback)(X509_STORE_CTX *, void *);
766 int (*default_verify_callback)(int ok,X509_STORE_CTX *ctx); /* called 'verify_callback' in the SSL */
1000 int (*verify_callback)(int ok,X509_STORE_CTX *ctx); /* fail if callback returns 0 */
1386 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *);
1388 int (*callback)(int ok,X509_STORE_CTX *ctx));
1460 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *);
1462 int (*callback)(int, X509_STORE_CTX *));
1464 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg);

Completed in 370 milliseconds

123