Home
last modified time | relevance | path

Searched refs:client_cert_cb (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_client_cert_cb.pod12 int (*client_cert_cb)(SSL *ssl, X509 **x509,
19 SSL_CTX_set_client_cert_cb() sets the I<client_cert_cb> callback, that is
23 When I<client_cert_cb> is NULL, no callback function is used.
28 I<client_cert_cb> is the application defined callback. If it wants to
37 of I<client_cert_cb>. It is the job of the I<client_cert_cb> to store information
67 SSL_CTX_get_client_cert_cb() returns function pointer of I<client_cert_cb> or
72 The I<client_cert_cb> cannot return a complete certificate chain, it can
/freebsd/crypto/openssl/ssl/
H A Dssl_sess.c1371 ctx->client_cert_cb = cb; in SSL_CTX_set_client_cert_cb()
1376 return ctx->client_cert_cb; in SSL_CTX_get_client_cert_cb()
H A Dssl_local.h925 int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); member
/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_clnt.c3668 if (s->ctx->client_cert_cb) in ssl_do_client_cert_cb()
3669 i = s->ctx->client_cert_cb(s, px509, ppkey); in ssl_do_client_cert_cb()
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h749 int (*client_cert_cb) (SSL *ssl, X509 **x509,
H A Dssl.h.in726 int (*client_cert_cb) (SSL *ssl, X509 **x509,
/freebsd/crypto/openssl/test/
H A Dsslapitest.c8574 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey) in client_cert_cb() function
8637 SSL_CTX_set_client_cert_cb(cctx, client_cert_cb); in test_client_cert_cb()