Home
last modified time | relevance | path

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

/onnv-gate/usr/src/common/openssl/doc/ssl/
H A DSSL_CTX_set_verify.pod12 int (*verify_callback)(int, X509_STORE_CTX *));
14 int (*verify_callback)(int, X509_STORE_CTX *));
18 int verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx);
23 specifies the B<verify_callback> function to be used. If no callback function
24 shall be specified, the NULL pointer can be used for B<verify_callback>.
27 specifies the B<verify_callback> function to be used. If no callback function
28 shall be specified, the NULL pointer can be used for B<verify_callback>. In
29 this case last B<verify_callback> set specifically for this B<ssl> remains. If
101 and the verify_callback() function, but the way this information is used
115 The B<verify_callback> function is used to control the behaviour when the
[all …]
H A DSSL_CTX_set_cert_verify_callback.pod40 Within I<x509_store_ctx>, I<callback> has access to the I<verify_callback>
46 B<verify_callback> function called during the verification process. The
53 the B<verify_callback> function.
H A DSSL_CTX_set_cert_store.pod39 the verification takes place. So will e.g. the verify_callback() be
40 overridden with the verify_callback() set via the
H A DSSL_get_ex_new_index.pod50 verify_callback() in L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>.
H A DSSL_get_ex_data_X509_STORE_CTX_idx.pod53 verify_callback() when checking the peers certificate. Please check
/onnv-gate/usr/src/common/openssl/crypto/pkcs7/
H A Dverify.c67 int verify_callback(int ok, X509_STORE_CTX *ctx);
141 X509_STORE_set_verify_cb_func(cert_store,verify_callback);
215 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
H A Ddec.c67 int verify_callback(int ok, X509_STORE_CTX *ctx);
146 X509_STORE_set_verify_cb_func(cert_store,verify_callback);
200 int verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
/onnv-gate/usr/src/common/openssl/apps/
H A Ds_apps.h153 int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
H A Ds_cb.c127 int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
H A Ds_client.c596 SSL_CTX_set_verify(ctx,verify,verify_callback); in MAIN()
H A Ds_server.c1080 SSL_CTX_set_verify(ctx,s_server_verify,verify_callback); in MAIN()
/onnv-gate/usr/src/common/openssl/ssl/
H A Dssl_task.c134 int MS_CALLBACK verify_callback(int ok, X509 *xs, X509 *xi, int depth,
H A Dssl_cert.c508 if (s->verify_callback) in ssl_verify_cert_chain()
509 X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback); in ssl_verify_cert_chain()
H A Dssltest.c188 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx);
820 verify_callback); in main()
827 verify_callback); in main()
1627 static int MS_CALLBACK verify_callback(int ok, X509_STORE_CTX *ctx) in verify_callback() function
H A Dssl_lib.c294 s->verify_callback=ctx->default_verify_callback; in SSL_new()
676 return(s->verify_callback); in SSL_get_verify_callback()
699 s->verify_callback=callback; in SSL_set_verify()
H A Dssl.h941 int (*verify_callback)(int ok,X509_STORE_CTX *ctx); /* fail if callback returns 0 */ member
/onnv-gate/usr/src/common/openssl/
H A DCHANGES3580 *) Modified SSL library such that the verify_callback that has been set
3582 used. Before the change, a verify_callback set with this function was
3583 ignored and the verify_callback() set in the SSL_CTX at the time of