Home
last modified time | relevance | path

Searched refs:verify_callback (Results 1 – 19 of 19) sorted by relevance

/freebsd-head/crypto/openssl/doc/man3/
HDSSL_CTX_set_verify.pod20 void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, SSL_verify_cb verify_callback);
21 void SSL_set_verify(SSL *ssl, int mode, SSL_verify_cb verify_callback);
34 specifies the B<verify_callback> function to be used. If no callback function
35 shall be specified, the NULL pointer can be used for B<verify_callback>.
38 specifies the B<verify_callback> function to be used. If no callback function
39 shall be specified, the NULL pointer can be used for B<verify_callback>. In
40 this case last B<verify_callback> set specifically for this B<ssl> remains. If
47 In client mode B<verify_callback> may also call the L<SSL_set_retry_verify(3)>
156 and the verify_callback() function, but the way this information is used
173 The B<verify_callback> function is used to control the behaviour when the
[all …]
HDX509_STORE_CTX_set_verify_cb.pod111 int verify_callback(int ok, X509_STORE_CTX *ctx) {
118 int verify_callback(int ok, X509_STORE_CTX *ctx) {
129 int verify_callback(int ok, X509_STORE_CTX *ctx)
145 int verify_callback(int ok, X509_STORE_CTX *ctx)
HDSSL_CTX_set_cert_verify_callback.pod66 Within I<x509_store_ctx>, I<callback> has access to the I<verify_callback>
76 B<verify_callback> function called during the verification process. The
83 the B<verify_callback> function.
HDSSL_CTX_set_cert_store.pod46 the verification takes place. So will e.g. the verify_callback() be
47 overridden with the verify_callback() set via the
/freebsd-head/crypto/openssl/test/helpers/
HDssl_test_ctx.h99 ssl_verify_callback_t verify_callback; member
236 const char *ssl_verify_callback_name(ssl_verify_callback_t verify_callback);
HDhandshake.c515 switch (extra->client.verify_callback) { in configure_handshake_ctx()
1649 if (extra->client.verify_callback == SSL_TEST_VERIFY_RETRY_ONCE in do_handshake_internal()
HDssl_test_ctx.c190 client_conf->verify_callback = ret_value; in parse_client_verify_callback()
/freebsd-head/crypto/openssl/test/
HDssl_test_ctx_test.c39 if (!TEST_int_eq(conf1->verify_callback, conf2->verify_callback) in clientconf_eq()
179 fixture->expected_ctx->extra.client.verify_callback = in test_good_configuration()
HDssl_old_test.c85 static int verify_callback(int ok, X509_STORE_CTX *ctx);
1560 verify_callback); in main()
1563 verify_callback); in main()
1571 SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback); in main()
2878 static int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/freebsd-head/crypto/openssl/apps/include/
HDs_apps.h24 int verify_callback(int ok, X509_STORE_CTX *ctx);
/freebsd-head/crypto/openssl/apps/lib/
HDtlssrp_depr.c213 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback); in set_up_srp_verifier_file()
HDs_cb.c45 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/freebsd-head/crypto/openssl/doc/man7/
HDproxy-certificates.pod208 static int verify_callback(int ok, X509_STORE_CTX *ctx)
308 X509_STORE_CTX_set_verify_cb(ctx, verify_callback);
/freebsd-head/crypto/openssl/ssl/
HDssl_cert.c440 if (s->verify_callback) in ssl_verify_cert_chain()
441 X509_STORE_CTX_set_verify_cb(ctx, s->verify_callback); in ssl_verify_cert_chain()
HDssl_lib.c755 s->verify_callback = ctx->default_verify_callback; in SSL_new()
1511 return s->verify_callback; in SSL_get_verify_callback()
1533 s->verify_callback = callback; in SSL_set_verify()
HDssl_local.h1524 int (*verify_callback) (int ok, X509_STORE_CTX *ctx); member
/freebsd-head/crypto/openssl/apps/
HDs_server.c2159 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback); in s_server_main()
2177 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback); in s_server_main()
HDs_client.c1899 SSL_CTX_set_verify(ctx, verify, verify_callback); in s_client_main()
/freebsd-head/crypto/openssl/
HDCHANGES.md15300 * Modified SSL library such that the verify_callback that has been set
15302 used. Before the change, a verify_callback set with this function was
15303 ignored and the verify_callback() set in the SSL_CTX at the time of