Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/doc/man3/
H A DSSL_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>. B<ctx> B<MUST NOT> be NULL.
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 …]
H A DSSL_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.
H A DX509_STORE_CTX_set_verify_cb.pod131 int verify_callback(int ok, X509_STORE_CTX *ctx) {
138 int verify_callback(int ok, X509_STORE_CTX *ctx) {
149 int verify_callback(int ok, X509_STORE_CTX *ctx)
165 int verify_callback(int ok, X509_STORE_CTX *ctx)
H A DSSL_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/crypto/openssl/test/
H A Dssl_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()
H A Dssl_old_test.c86 static int verify_callback(int ok, X509_STORE_CTX *ctx);
1572 verify_callback); in main()
1575 verify_callback); in main()
1583 SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback); in main()
2891 static int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/freebsd/crypto/openssl/test/helpers/
H A Dssl_test_ctx.h100 ssl_verify_callback_t verify_callback; member
242 const char *ssl_verify_callback_name(ssl_verify_callback_t verify_callback);
H A Dhandshake.c516 switch (extra->client.verify_callback) { in configure_handshake_ctx()
1668 if (extra->client.verify_callback == SSL_TEST_VERIFY_RETRY_ONCE in do_handshake_internal()
H A Dssl_test_ctx.c190 client_conf->verify_callback = ret_value; in parse_client_verify_callback()
/freebsd/crypto/openssl/apps/include/
H A Ds_apps.h28 int verify_callback(int ok, X509_STORE_CTX *ctx);
/freebsd/crypto/krb5/src/plugins/tls/k5tls/
H A Dopenssl.c289 verify_callback(int preverify_ok, X509_STORE_CTX *store_ctx) in verify_callback() function
465 SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, verify_callback); in setup()
/freebsd/crypto/openssl/apps/lib/
H A Dtlssrp_depr.c213 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback); in set_up_srp_verifier_file()
H A Ds_cb.c48 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/freebsd/crypto/openssl/doc/man7/
H A Dproxy-certificates.pod208 static int verify_callback(int ok, X509_STORE_CTX *ctx)
308 X509_STORE_CTX_set_verify_cb(ctx, verify_callback);
/freebsd/crypto/openssl/ssl/
H A Dssl_cert.c501 if (s->verify_callback) in ssl_verify_internal()
502 X509_STORE_CTX_set_verify_cb(ctx, s->verify_callback); in ssl_verify_internal()
H A Dssl_lib.c808 s->verify_callback = ctx->default_verify_callback; in ossl_ssl_connection_new_int()
1875 return sc->verify_callback; in SSL_get_verify_callback()
1902 sc->verify_callback = callback; in SSL_set_verify()
H A Dssl_local.h1566 int (*verify_callback) (int ok, X509_STORE_CTX *ctx); member
/freebsd/crypto/openssl/apps/
H A Ds_server.c2245 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback); in s_server_main()
2263 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback); in s_server_main()
H A Ds_client.c2024 SSL_CTX_set_verify(ctx, verify, verify_callback); in s_client_main()
/freebsd/crypto/openssl/
H A DCHANGES.md16574 * Modified SSL library such that the verify_callback that has been set
16576 used. Before the change, a verify_callback set with this function was
16577 ignored and the verify_callback() set in the SSL_CTX at the time of