Searched refs:client_cert_cb (Results 1 – 7 of 7) sorted by relevance
/openssl/doc/man3/ |
H A D | SSL_CTX_set_client_cert_cb.pod | 12 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
|
/openssl/test/ |
H A D | cert_comp_test.c | 40 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey) in client_cert_cb() function 183 SSL_CTX_set_client_cert_cb(cctx, client_cert_cb); in test_ssl_cert_comp()
|
H A D | sslapitest.c | 9002 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey) in client_cert_cb() function 9065 SSL_CTX_set_client_cert_cb(cctx, client_cert_cb); in test_client_cert_cb()
|
/openssl/ssl/ |
H A D | ssl_sess.c | 1395 ctx->client_cert_cb = cb; in SSL_CTX_set_client_cert_cb() 1400 return ctx->client_cert_cb; in SSL_CTX_get_client_cert_cb()
|
H A D | ssl_local.h | 874 int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); member
|
/openssl/ssl/statem/ |
H A D | statem_clnt.c | 4058 if (sctx->client_cert_cb) in ssl_do_client_cert_cb() 4059 i = sctx->client_cert_cb(SSL_CONNECTION_GET_USER_SSL(s), px509, ppkey); in ssl_do_client_cert_cb()
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 746 int (*client_cert_cb) (SSL *ssl, X509 **x509,
|
Completed in 150 milliseconds