Lines Matching refs:function
18 The following function has been deprecated since OpenSSL 3.0, and can be
29 SSL_CTX_set_tlsext_ticket_key_evp_cb() sets a callback function I<cb> for handling
35 The callback function I<cb> will be called for every client instigated TLS
37 message. It is the responsibility of this function to create or retrieve the
40 The OpenSSL library uses your callback function to help implement a common TLS
43 maintained by the callback function implementation.
47 The server, through the callback function, either agrees to reuse the session
51 Before the callback function is started I<ctx> and I<hctx> have been
57 the callback function will be called with I<enc> equal to 1. The OpenSSL
58 library expects that the function will set an arbitrary I<name>, initialize
72 When the client presents a session ticket, the callback function with be called
73 with I<enc> set to 0 indicating that the I<cb> function should retrieve a set
78 I<iv>. using a function like L<EVP_DecryptInit_ex(3)>. The key material and
83 callback function should return 2. The library will call the callback again
86 The return value of the I<cb> function is used by OpenSSL to determine what
119 The SSL_CTX_set_tlsext_ticket_key_cb() function is identical to
122 Before this callback function is started I<hctx> will have been
148 Returns 1 to indicate the callback function was set and 0 otherwise.
237 The SSL_CTX_set_tlsext_ticket_key_cb() function was deprecated in OpenSSL 3.0.
239 The SSL_CTX_set_tlsext_ticket_key_evp_cb() function was introduced in