Home
last modified time | relevance | path

Searched refs:cert_cb (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_cert_cb.pod11 void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cert_cb)(SSL *ssl, void *arg),
13 void SSL_set_cert_cb(SSL *s, int (*cert_cb)(SSL *ssl, void *arg), void *arg);
17 SSL_CTX_set_cert_cb() and SSL_set_cert_cb() sets the I<cert_cb> callback,
20 When I<cert_cb> is NULL, no callback function is used.
22 I<cert_cb> is the application defined callback. It is called before a
31 function will again lead to the call of I<cert_cb>. It is the job of the
32 I<cert_cb> to store information about the state of the last call,
/freebsd/crypto/openssl/ssl/
H A Dssl_cert.c178 ret->cert_cb = cert->cert_cb; in ssl_cert_dup()
371 c->cert_cb = cb; in ssl_cert_set_cert_cb()
H A Dssl_local.h2047 int (*cert_cb) (SSL *ssl, void *arg); member
/freebsd/contrib/wpa/src/eapol_supp/
H A Deapol_supp_sm.h260 void (*cert_cb)(void *ctx, struct tls_cert_data *cert, member
H A Deapol_supp_sm.c2030 if (sm->ctx->cert_cb) in eapol_sm_notify_cert()
2031 sm->ctx->cert_cb(sm->ctx->ctx, cert, cert_hash); in eapol_sm_notify_cert()
/freebsd/contrib/wpa/src/utils/
H A Dhttp_curl.c56 int (*cert_cb)(void *ctx, struct http_cert *cert); member
891 if (ctx->cert_cb == NULL) { in validate_server_cert()
904 ret = ctx->cert_cb(ctx->cert_cb_ctx, &hcert); in validate_server_cert()
1733 ctx->cert_cb = cb; in http_set_cert_cb()
/freebsd/contrib/wpa/wpa_supplicant/
H A Deapol_test.c610 ctx->cert_cb = eapol_test_cert_cb; in test_eapol()
H A Dwpas_glue.c1215 ctx->cert_cb = wpa_supplicant_cert_cb; in wpa_supplicant_init_eapol()
/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_clnt.c3431 if (s->cert->cert_cb) { in tls_prepare_client_certificate()
3432 i = s->cert->cert_cb(s, s->cert->cert_cb_arg); in tls_prepare_client_certificate()
H A Dstatem_srvr.c2201 if (!s->hit && s->cert->cert_cb != NULL) { in tls_post_process_client_hello()
2202 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg); in tls_post_process_client_hello()
H A Dstatem_lib.c1545 if (s->psk_find_session_cb != NULL || s->cert->cert_cb != NULL) in is_tls13_capable()
/freebsd/crypto/openssl/test/
H A Dsslapitest.c8385 static int cert_cb(SSL *s, void *arg) in cert_cb() function
8516 SSL_CTX_set_cert_cb(sctx, cert_cb, snictx); in test_cert_cb_int()