Lines Matching refs:callback
20 int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
23 ssl_ct_validation_cb callback,
35 This is accomplished by setting a built-in CT validation callback.
36 The behaviour of the callback is determined by the B<validation_mode> argument,
45 However, in that case if the verification status before the built-in callback
47 callback.
65 register a custom callback that may implement a different policy than either of
67 This callback can examine the peer's SCTs and determine whether they are
70 and the callback returns a non-positive result.
72 An arbitrary callback data argument, B<arg>, can be passed in when setting
73 the callback.
74 This will be passed to the callback whenever it is invoked.
77 If no callback is set, SCTs will not be requested and Certificate Transparency
80 No callback will be invoked when the peer presents no certificate, e.g. by
82 In that case the handshake continues as it would had no callback been
92 enabled via the built-in or the custom callbacks, by setting a NULL callback.
96 enabled via either SSL_enable_ct() or a non-null custom callback, and 0
109 Certificate Transparency validation cannot be enabled and so a callback cannot
116 SSL_set_ct_validation_callback() return 1 if the B<callback> is successfully
124 validation callback is set, or 0 if no callback (or equivalently a NULL
125 callback) is set.