Searched refs:client_cert_cb (Results 1 – 8 of 8) 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, 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
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | types.rs | 800 client_cert_cb: *mut c_void, 870 client_cert_cb: *mut c_void,
|
/third_party/openssl/ssl/ |
D | ssl_sess.c | 1329 ctx->client_cert_cb = cb; in SSL_CTX_set_client_cert_cb() 1334 return ctx->client_cert_cb; in SSL_CTX_get_client_cert_cb()
|
D | ssl_local.h | 925 int (*client_cert_cb) (SSL *ssl, X509 **x509, EVP_PKEY **pkey); member
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 3667 if (s->ctx->client_cert_cb) in ssl_do_client_cert_cb() 3668 i = s->ctx->client_cert_cb(s, px509, ppkey); in ssl_do_client_cert_cb()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | ssl.h | 734 int (*client_cert_cb) (SSL *ssl, X509 **x509,
|
/third_party/openssl/test/ |
D | sslapitest.c | 8269 static int client_cert_cb(SSL *ssl, X509 **x509, EVP_PKEY **pkey) in client_cert_cb() function 8332 SSL_CTX_set_client_cert_cb(cctx, client_cert_cb); in test_client_cert_cb()
|
/third_party/openssl/include/openssl/ |
D | ssl.h.in | 726 int (*client_cert_cb) (SSL *ssl, X509 **x509,
|