Searched refs:cert_cb (Results 1 – 12 of 12) sorted by relevance
| /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
| H A D | SSL_CTX_set_cert_cb.pod | 11 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); 15 int (*cert_cb)(SSL *ssl, void *arg); 19 SSL_CTX_set_cert_cb() and SSL_set_cert_cb() sets the cert_cb() callback, 22 When cert_cb() is NULL, no callback function is used. 24 cert_cb() is the application defined callback. It is called before a 33 function will again lead to the call of cert_cb(). It is the job of the 34 cert_cb() to store information about the state of the last call,
|
| /netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
| H A D | SSL_CTX_set_cert_cb.pod | 11 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,
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/ |
| H A D | ssl_cert.c | 167 ret->cert_cb = cert->cert_cb; in ssl_cert_dup() 359 c->cert_cb = cb; in ssl_cert_set_cert_cb()
|
| H A D | ssl_local.h | 1922 int (*cert_cb) (SSL *ssl, void *arg); member
|
| /netbsd-src/crypto/external/bsd/openssl/dist/ssl/ |
| H A D | ssl_cert.c | 178 ret->cert_cb = cert->cert_cb; in ssl_cert_dup() 371 c->cert_cb = cb; in ssl_cert_set_cert_cb()
|
| H A D | ssl_local.h | 2047 int (*cert_cb) (SSL *ssl, void *arg); member
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/statem/ |
| H A D | statem_clnt.c | 3473 if (s->cert->cert_cb) { in tls_prepare_client_certificate() 3474 i = s->cert->cert_cb(s, s->cert->cert_cb_arg); in tls_prepare_client_certificate()
|
| H A D | statem_srvr.c | 2262 if (!s->hit && s->cert->cert_cb != NULL) { in tls_post_process_client_hello() 2263 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg); in tls_post_process_client_hello()
|
| H A D | statem_lib.c | 1534 if (s->psk_find_session_cb != NULL || s->cert->cert_cb != NULL) in is_tls13_capable()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/ssl/statem/ |
| H A D | statem_srvr.c | 2201 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 D | statem_clnt.c | 3431 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()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
| H A D | sslapitest.c | 6268 static int cert_cb(SSL *s, void *arg) in cert_cb() function 6391 SSL_CTX_set_cert_cb(sctx, cert_cb, snictx); in test_cert_cb_int()
|