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 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_verify_callback.pod71 Within I<x509_store_ctx>, I<callback> has access to the I<verify_callback>
81 B<verify_callback> function called during the verification process. The
88 the B<verify_callback> function.
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/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.c514 switch (extra->client.verify_callback) { in configure_handshake_ctx()
1663 if (extra->client.verify_callback == SSL_TEST_VERIFY_RETRY_ONCE in do_handshake_internal()
H A Dssl_test_ctx.c187 client_conf->verify_callback = ret_value; in parse_client_verify_callback()
/freebsd/crypto/openssl/test/
H A Dssl_test_ctx_test.c38 if (!TEST_int_eq(conf1->verify_callback, conf2->verify_callback) in clientconf_eq()
178 fixture->expected_ctx->extra.client.verify_callback = SSL_TEST_VERIFY_REJECT_ALL; in test_good_configuration()
H A Dssl_old_test.c86 static int verify_callback(int ok, X509_STORE_CTX *ctx);
1558 verify_callback); in main()
1561 verify_callback); in main()
1569 SSL_CTX_set_verify(c_ctx, SSL_VERIFY_PEER, verify_callback); in main()
2867 static int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/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.c208 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.c500 if (s->verify_callback) in ssl_verify_internal()
501 X509_STORE_CTX_set_verify_cb(ctx, s->verify_callback); in ssl_verify_internal()
H A Dssl_lib.c800 s->verify_callback = ctx->default_verify_callback; in ossl_ssl_connection_new_int()
1850 return sc->verify_callback; in SSL_get_verify_callback()
1878 sc->verify_callback = callback; in SSL_set_verify()
H A Dssl_local.h1565 int (*verify_callback)(int ok, X509_STORE_CTX *ctx); member
/freebsd/crypto/openssl/apps/
H A Ds_server.c2347 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback); in s_server_main()
2365 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback); in s_server_main()
H A Ds_client.c2108 SSL_CTX_set_verify(ctx, verify, verify_callback); in s_client_main()
/freebsd/crypto/openssl/
H A DCHANGES.md16954 * Modified SSL library such that the verify_callback that has been set
16956 used. Before the change, a verify_callback set with this function was
16957 ignored and the verify_callback() set in the SSL_CTX at the time of