Home
last modified time | relevance | path

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

/freebsd-12.1/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);
35 shall be specified, the NULL pointer can be used for B<verify_callback>.
39 shall be specified, the NULL pointer can be used for B<verify_callback>. In
138 and the verify_callback() function, but the way this information is used
166 and B<verify_callback> is called with B<preverify_ok>=0. By applying
173 verification process. If B<verify_callback> returns 0, the verification
176 the TLS/SSL handshake is terminated. If B<verify_callback> returns 1,
182 own error storage managed by B<verify_callback>.
244 static int verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
[all …]
H A DSSL_CTX_set_cert_verify_callback.pod42 Within I<x509_store_ctx>, I<callback> has access to the I<verify_callback>
52 B<verify_callback> function called during the verification process. The
59 the B<verify_callback> function.
H A DX509_STORE_CTX_set_verify_cb.pod103 int verify_callback(int ok, X509_STORE_CTX *ctx) {
110 int verify_callback(int ok, X509_STORE_CTX *ctx) {
121 int verify_callback(int ok, X509_STORE_CTX *ctx)
137 int verify_callback(int ok, X509_STORE_CTX *ctx)
H A DSSL_CTX_set_cert_store.pod44 the verification takes place. So will e.g. the verify_callback() be
45 overridden with the verify_callback() set via the
/freebsd-12.1/crypto/openssl/apps/
H A Ds_apps.h22 int verify_callback(int ok, X509_STORE_CTX *ctx);
H A Ds_server.c2072 SSL_CTX_set_verify(ctx, s_server_verify, verify_callback); in s_server_main()
2090 SSL_CTX_set_verify(ctx2, s_server_verify, verify_callback); in s_server_main()
2118 SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_callback); in s_server_main()
H A Ds_cb.c43 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
H A Ds_client.c1904 SSL_CTX_set_verify(ctx, verify, verify_callback); in s_client_main()
/freebsd-12.1/contrib/subversion/subversion/libsvn_repos/
H A Ddump.c2413 svn_repos_verify_callback_t verify_callback, in report_error() argument
2417 if (verify_callback) in report_error()
2423 cb_err = verify_callback(verify_baton, revision, verify_err, pool); in report_error()
2444 svn_repos_verify_callback_t verify_callback, in svn_repos_verify_fs3() argument
2510 SVN_ERR(report_error(SVN_INVALID_REVNUM, err, verify_callback, in svn_repos_verify_fs3()
2531 SVN_ERR(report_error(rev, err, verify_callback, verify_baton, in svn_repos_verify_fs3()
/freebsd-12.1/crypto/openssl/doc/HOWTO/
H A Dproxy_certificates.txt202 static int verify_callback(int ok, X509_STORE_CTX *ctx)
297 X509_STORE_CTX_set_verify_cb(ctx, verify_callback);
/freebsd-12.1/crypto/openssl/ssl/
H A Dssl_cert.c421 if (s->verify_callback) in ssl_verify_cert_chain()
422 X509_STORE_CTX_set_verify_cb(ctx, s->verify_callback); in ssl_verify_cert_chain()
H A Dssl_lib.c746 s->verify_callback = ctx->default_verify_callback; in SSL_new()
1444 return s->verify_callback; in SSL_get_verify_callback()
1466 s->verify_callback = callback; in SSL_set_verify()
H A Dssl_locl.h1209 int (*verify_callback) (int ok, X509_STORE_CTX *ctx); member
/freebsd-12.1/contrib/subversion/subversion/include/
H A Dsvn_repos.h3234 svn_repos_verify_callback_t verify_callback,
/freebsd-12.1/crypto/openssl/
H A DCHANGES9370 *) Modified SSL library such that the verify_callback that has been set
9372 used. Before the change, a verify_callback set with this function was
9373 ignored and the verify_callback() set in the SSL_CTX at the time of