Searched refs:client_cert_cb (Results 1 – 6 of 6) sorted by relevance
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_client_cert_cb.pod | 12 int (*client_cert_cb)(SSL *ssl, X509 **x509, 16 int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey); 20 SSL_CTX_set_client_cert_cb() sets the client_cert_cb() callback, that is 24 When client_cert_cb() is NULL, no callback function is used. 29 client_cert_cb() is the application defined callback. If it wants to 38 of client_cert_cb(). It is the job of the client_cert_cb() to store information 68 SSL_CTX_get_client_cert_cb() returns function pointer of client_cert_cb() or 73 The client_cert_cb() cannot return a complete certificate chain, it can
|
/third_party/openssl/ssl/ |
D | ssl_sess.c | 1197 ctx->client_cert_cb = cb; in SSL_CTX_set_client_cert_cb() 1202 return ctx->client_cert_cb; in SSL_CTX_get_client_cert_cb()
|
D | ssl_local.h | 814 int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); member
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 3726 if (s->ctx->client_cert_cb) in ssl_do_client_cert_cb() 3727 i = s->ctx->client_cert_cb(s, px509, ppkey); in ssl_do_client_cert_cb()
|
/third_party/openssl/include/openssl/ |
D | ssl.h | 734 int (*client_cert_cb) (SSL *ssl, X509 **x509,
|
/third_party/openssl/test/ |
D | sslapitest.c | 6237 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey) in client_cert_cb() function 6304 SSL_CTX_set_client_cert_cb(cctx, client_cert_cb); in test_client_cert_cb()
|