Home
last modified time | relevance | path

Searched full:verification (Results 1 – 25 of 985) sorted by relevance

12345678910>>...40

/src/crypto/openssl/doc/man3/
H A DSSL_CTX_set_cert_verify_callback.pod5 SSL_CTX_set_cert_verify_callback - set peer certificate verification procedure
17 SSL_CTX_set_cert_verify_callback() sets the verification callback function for
24 a verification function is called regardless of the verification mode.
25 If the application does not explicitly specify a verification callback function,
26 the built-in verification function is used.
27 If a verification callback I<callback> is specified via
33 I<callback> should return 1 to indicate verification success
34 and 0 to indicate verification failure.
38 if the verification mode is B<SSL_VERIFY_NONE>.
45 typically done in case the certificate verification was not yet able
[all …]
H A DSSL_CTX_set_verify.pod12 - set various SSL/TLS parameters for peer certificate verification
33 SSL_CTX_set_verify() sets the verification flags for B<ctx> to be B<mode> and
37 SSL_set_verify() sets the verification flags for B<ssl> to be B<mode> and
45 of the current SSL object that is doing the verification.
50 This would be typically done in case the certificate verification was not yet
55 information needed for the verification.
57 server certificate verification step.
63 verification that shall be allowed for B<ctx>.
66 verification that shall be allowed for B<ssl>.
81 The verification of certificates can be controlled by a set of logically
[all …]
H A DX509_STORE_CTX_new.pod85 X509_STORE_CTX_init() sets up I<ctx> for a subsequent verification operation.
88 given I<ctx>. Among others, it sets the verification parameters associated
92 L<X509_STORE_CTX_verify(3)>, i.e., a context is only good for one verification.
102 and the caller must not free it before verification is complete.
105 will need a verification target.
108 list of untrusted certificates as its verification target,
111 X509_STORE_CTX_init_rpk() sets up I<ctx> for a subsequent verification
117 and the caller must not free it before verification is complete.
127 and the caller must not free it before verification is complete.
133 and the caller must not free it before verification is complete.
[all …]
H A DX509_VERIFY_PARAM_set_flags.pod22 - X509 verification parameters
77 a certificate verification operation.
80 it with B<flags>. See L</VERIFICATION FLAGS> for a complete
86 which specifies how verification flags are copied from one structure to
92 X509_VERIFY_PARAM_set_purpose() sets the verification purpose in B<param>
102 X509_VERIFY_PARAM_set_time() sets the verification time in B<param> to
114 X509_VERIFY_PARAM_set_depth() sets the maximum verification depth to B<depth>.
155 certificate verification automatically invokes L<X509_check_host(3)>
161 be suppressed as appropriate when DANE verification is enabled.
201 is specified, certificate verification automatically invokes
[all …]
H A DX509_STORE_CTX_set_verify_cb.pod21 - get and set X509_STORE_CTX components such as verification callback
55 X509_STORE_CTX_set_verify_cb() sets the verification callback of B<ctx> to
58 The verification callback can be used to customise the operation of certificate
59 verification, for instance by overriding error conditions or logging errors for
62 However, a verification callback is B<not> essential and the default operation
72 is performing the verification operation. A callback can examine this
77 X509_STORE_CTX_print_verify_cb() is a verification callback function that,
78 when a certificate verification has failed, adds an entry to the error queue
109 In general a verification callback should B<NOT> unconditionally return 1 in
110 all circumstances because this will allow verification to succeed no matter
[all …]
H A DSSL_get_verify_result.pod5 SSL_get_verify_result - get result of peer certificate verification
15 SSL_get_verify_result() returns the result of the verification of the
20 SSL_get_verify_result() can only return one error code while the verification
22 the last verification error that occurred during the processing is available
25 Sometimes there can be a sequence of errors leading to the verification
32 The verification result is part of the established session and is restored
38 X509_V_OK. This is because no verification error occurred, it does however
50 The verification succeeded or no peer certificate was presented.
H A DX509_STORE_CTX_get_error.pod9 X509_verify_cert_error_string - get or set certificate verification status
30 These functions are typically called after certificate or chain verification
32 an error or in a verification callback to determine the nature of an error.
37 an error, likely because a verification callback function has waived the error.
40 it might be used in a verification callback to set an error based on additional
62 It may be examined by a verification callback invoked to handle each error
63 encountered during chain verification and is no longer required after such a
75 verification is successful. Otherwise the returned chain may be incomplete or
82 verification error I<n>.
94 verification error I<n>.
[all …]
H A DSSL_CTX_get_verify_mode.pod5 …h, SSL_get_verify_callback, SSL_CTX_get_verify_callback - get currently set verification parameters
20 SSL_CTX_get_verify_mode() returns the verification mode currently set in
23 SSL_get_verify_mode() returns the verification mode currently set in
26 SSL_CTX_get_verify_depth() returns the verification depth limit currently set
30 SSL_get_verify_depth() returns the verification depth limit currently set
34 SSL_CTX_get_verify_callback() returns a function pointer to the verification
38 SSL_get_verify_callback() returns a function pointer to the verification
H A DSSL_set_retry_verify.pod5 SSL_set_retry_verify - indicate that certificate verification should be retried
15 SSL_set_retry_verify() should be called from the certificate verification
19 is resumed again by the application, retrying the verification step.
26 verification callback on the client side is undefined.
45 if (/* we need to retry verification callback */)
48 /* do normal processing of the verification callback */
58 incompatible handling of a negative return value from the verification
H A DSSL_CTX_set1_verify_cert_store.pod11 verification or chain store
34 set the certificate store used for certificate verification to B<st>.
60 The verification store is used to verify the certificate chain sent by the
61 peer: that is an SSL/TLS client will use the verification store to verify
67 L<openssl-verification-options(1)/Certification Path Building> and
68 L<openssl-verification-options(1)/Certification Path Validation>.
79 If the chain or the verification store is not set then the store associated
H A DTS_VERIFY_CTX.pod10 - manage the TS response verification context
58 verification context created in advance.
62 TS_VERIFY_CTX_init() initializes a verification context.
65 verification context to be freed. If I<ctx> is NULL, the call is ignored.
67 TS_VERIFY_CTX_set_flags() sets the flags in the verification context. I<f> are
70 TS_VERIFY_CTX_add_flags() adds flags to the verification context. I<f> are the
79 TS_VERIFY_CTX_set0_store() sets the store for the verification context. I<s> is
86 B<TS_VERIFY_CTX> object and initializes it. I<ctx> is the verification context
H A DX509_verify_cert.pod37 The verification context, of type B<X509_STORE_CTX>, can be constructed
43 such as a callback function that allows customizing the verification outcome.
44 A complete description of the certificate verification process is contained in
45 the L<openssl-verification-options(1)> manual page.
62 When the verification target is a raw public key, rather than a certificate,
86 verification indicated success, the stored error code may be different from
87 X509_V_OK, likely because a verification callback function has waived the error.
/src/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set_cert_verify_callback.367 SSL_CTX_set_cert_verify_callback \- set peer certificate verification procedure
79 \&\fBSSL_CTX_set_cert_verify_callback()\fR sets the verification callback function for
85 a verification function is called regardless of the verification mode.
86 If the application does not explicitly specify a verification callback function,
87 the built\-in verification function is used.
88 If a verification callback \fIcallback\fR is specified via
94 \&\fIcallback\fR should return 1 to indicate verification success
95 and 0 to indicate verification failure.
99 if the verification mode is \fBSSL_VERIFY_NONE\fR.
106 typically done in case the certificate verification was not yet able
[all …]
H A DSSL_CTX_set_verify.374 \&\- set various SSL/TLS parameters for peer certificate verification
95 \&\fBSSL_CTX_set_verify()\fR sets the verification flags for \fBctx\fR to be \fBmode\fR and
99 \&\fBSSL_set_verify()\fR sets the verification flags for \fBssl\fR to be \fBmode\fR and
107 of the current SSL object that is doing the verification.
112 This would be typically done in case the certificate verification was not yet
117 information needed for the verification.
119 server certificate verification step.
125 verification that shall be allowed for \fBctx\fR.
128 verification that shall be allowed for \fBssl\fR.
142 The verification of certificates can be controlled by a set of logically
[all …]
H A DX509_STORE_CTX_new.3147 \&\fBX509_STORE_CTX_init()\fR sets up \fIctx\fR for a subsequent verification operation.
150 given \fIctx\fR. Among others, it sets the verification parameters associated
154 \&\fBX509_STORE_CTX_verify\fR\|(3), i.e., a context is only good for one verification.
164 and the caller must not free it before verification is complete.
167 will need a verification target.
170 list of untrusted certificates as its verification target,
173 \&\fBX509_STORE_CTX_init_rpk()\fR sets up \fIctx\fR for a subsequent verification
179 and the caller must not free it before verification is complete.
189 and the caller must not free it before verification is complete.
195 and the caller must not free it before verification is complete.
[all …]
H A DX509_VERIFY_PARAM_set_flags.384 \&\- X509 verification parameters
139 a certificate verification operation.
142 it with \fBflags\fR. See "VERIFICATION FLAGS" for a complete
148 which specifies how verification flags are copied from one structure to
154 \&\fBX509_VERIFY_PARAM_set_purpose()\fR sets the verification purpose in \fBparam\fR
164 \&\fBX509_VERIFY_PARAM_set_time()\fR sets the verification time in \fBparam\fR to
176 \&\fBX509_VERIFY_PARAM_set_depth()\fR sets the maximum verification depth to \fBdepth\fR.
217 certificate verification automatically invokes \fBX509_check_host\fR\|(3)
223 be suppressed as appropriate when DANE verification is enabled.
263 is specified, certificate verification automatically invokes
[all …]
H A DX509_STORE_CTX_get_error.371 X509_verify_cert_error_string \- get or set certificate verification status
92 These functions are typically called after certificate or chain verification
94 an error or in a verification callback to determine the nature of an error.
99 an error, likely because a verification callback function has waived the error.
102 it might be used in a verification callback to set an error based on additional
124 It may be examined by a verification callback invoked to handle each error
125 encountered during chain verification and is no longer required after such a
137 verification is successful. Otherwise the returned chain may be incomplete or
146 verification error \fIn\fR.
157 verification error \fIn\fR.
[all …]
H A DX509_STORE_CTX_set_verify_cb.383 \&\- get and set X509_STORE_CTX components such as verification callback
117 \&\fBX509_STORE_CTX_set_verify_cb()\fR sets the verification callback of \fBctx\fR to
120 The verification callback can be used to customise the operation of certificate
121 verification, for instance by overriding error conditions or logging errors for
124 However, a verification callback is \fBnot\fR essential and the default operation
134 is performing the verification operation. A callback can examine this
139 \&\fBX509_STORE_CTX_print_verify_cb()\fR is a verification callback function that,
140 when a certificate verification has failed, adds an entry to the error queue
169 In general a verification callback should \fBNOT\fR unconditionally return 1 in
170 all circumstances because this will allow verification to succeed no matter
[all …]
H A DSSL_get_verify_result.367 SSL_get_verify_result \- get result of peer certificate verification
77 \&\fBSSL_get_verify_result()\fR returns the result of the verification of the
81 \&\fBSSL_get_verify_result()\fR can only return one error code while the verification
83 the last verification error that occurred during the processing is available
86 Sometimes there can be a sequence of errors leading to the verification
93 The verification result is part of the established session and is restored
98 X509_V_OK. This is because no verification error occurred, it does however
106 The verification succeeded or no peer certificate was presented.
H A DSSL_set_retry_verify.367 SSL_set_retry_verify \- indicate that certificate verification should be retried
77 \&\fBSSL_set_retry_verify()\fR should be called from the certificate verification
81 is resumed again by the application, retrying the verification step.
87 verification callback on the client side is undefined.
105 \& if (/* we need to retry verification callback */)
108 \& /* do normal processing of the verification callback */
117 incompatible handling of a negative return value from the verification
H A DSSL_CTX_get_verify_mode.367 …, SSL_get_verify_callback, SSL_CTX_get_verify_callback \- get currently set verification parameters
82 \&\fBSSL_CTX_get_verify_mode()\fR returns the verification mode currently set in
85 \&\fBSSL_get_verify_mode()\fR returns the verification mode currently set in
88 \&\fBSSL_CTX_get_verify_depth()\fR returns the verification depth limit currently set
92 \&\fBSSL_get_verify_depth()\fR returns the verification depth limit currently set
96 \&\fBSSL_CTX_get_verify_callback()\fR returns a function pointer to the verification
100 \&\fBSSL_get_verify_callback()\fR returns a function pointer to the verification
H A DTS_VERIFY_CTX.372 \&\- manage the TS response verification context
124 verification context created in advance.
128 \&\fBTS_VERIFY_CTX_init()\fR initializes a verification context.
131 verification context to be freed. If \fIctx\fR is NULL, the call is ignored.
133 \&\fBTS_VERIFY_CTX_set_flags()\fR sets the flags in the verification context. \fIf\fR are
136 \&\fBTS_VERIFY_CTX_add_flags()\fR adds flags to the verification context. \fIf\fR are the
145 \&\fBTS_VERIFY_CTX_set0_store()\fR sets the store for the verification context. \fIs\fR is
152 \&\fBTS_VERIFY_CTX\fR object and initializes it. \fIctx\fR is the verification context
H A DSSL_CTX_set1_verify_cert_store.373 verification or chain store
96 set the certificate store used for certificate verification to \fBst\fR.
121 The verification store is used to verify the certificate chain sent by the
122 peer: that is an SSL/TLS client will use the verification store to verify
128 "Certification Path Building" in \fBopenssl\-verification\-options\fR\|(1) and
129 "Certification Path Validation" in \fBopenssl\-verification\-options\fR\|(1).
140 If the chain or the verification store is not set then the store associated
/src/crypto/heimdal/doc/doxyout/hx509/man/man3/
H A Dhx509_verify.31 .TH "hx509 verification functions" 3 "11 Jan 2012" "Version 1.5.2" "Heimdalx509library" \" -*- nrof…
5 hx509 verification functions \-
192 … the verification context, makes an reference to the keyset, so the consumer can free the keyset i…
196 \fIctx\fP a verification context
204 …estruction of the verification context. If there is no revoke context, the verification process is…
208 \fIctx\fP a verification context.
216 Free an hx509 verification context.
226 Allocate an verification context that is used fo control the verification process.
249 \fIctx\fP A hx509 verification context.
268 \fIctx\fP a verification context
[all …]
/src/contrib/libfido2/man/
H A Dfido2-token.1174 A PIN or equivalent user-verification gesture is required.
191 A PIN or equivalent user-verification gesture is required.
203 .Dq user verification always
218 A PIN or equivalent user-verification gesture is required.
237 A PIN or equivalent user-verification gesture is required.
264 A PIN or equivalent user-verification gesture is required.
304 A PIN or equivalent user-verification gesture is required.
323 A PIN or equivalent user-verification gesture is required.
342 A PIN or equivalent user-verification gesture is required.
378 .Dq user verification always
[all …]

12345678910>>...40