summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-01-25 18:01:20 +0000
committertb <>2022-01-25 18:01:20 +0000
commitc8578f33457bc1465ca08176ebca6e8aac53fcd3 (patch)
treed049dc32e831cb35c907db10a45e1ce92d955682 /src
parent2ba6de9045094252ff8e4220fe58be76617bea21 (diff)
downloadopenbsd-c8578f33457bc1465ca08176ebca6e8aac53fcd3.tar.gz
openbsd-c8578f33457bc1465ca08176ebca6e8aac53fcd3.tar.bz2
openbsd-c8578f33457bc1465ca08176ebca6e8aac53fcd3.zip
Rewrite paragraph to refer to EVP_CIPHER_CTX_new() and HMAC_CTX_new()
to match reality. spotted by/ok jmc
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.312
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3 b/src/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3
index 314574de15..b6ccabaeca 100644
--- a/src/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3
+++ b/src/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: SSL_CTX_set_tlsext_ticket_key_cb.3,v 1.7 2022/01/15 23:38:50 jsg Exp $ 1.\" $OpenBSD: SSL_CTX_set_tlsext_ticket_key_cb.3,v 1.8 2022/01/25 18:01:20 tb Exp $
2.\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100 2.\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100
3.\" 3.\"
4.\" This file was written by Rich Salz <rsalz@akamai.com> 4.\" This file was written by Rich Salz <rsalz@akamai.com>
@@ -48,7 +48,7 @@
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE. 49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\" 50.\"
51.Dd $Mdocdate: January 15 2022 $ 51.Dd $Mdocdate: January 25 2022 $
52.Dt SSL_CTX_SET_TLSEXT_TICKET_KEY_CB 3 52.Dt SSL_CTX_SET_TLSEXT_TICKET_KEY_CB 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -93,14 +93,14 @@ The server, through the callback function, either agrees to reuse the
93session ticket information or it starts a full TLS handshake to create a 93session ticket information or it starts a full TLS handshake to create a
94new session ticket. 94new session ticket.
95.Pp 95.Pp
96Before the callback function is started, 96The callback is called with
97.Fa ctx 97.Fa ctx
98and 98and
99.Fa hctx 99.Fa hctx
100have been initialised with 100which were newly allocated with
101.Xr EVP_CIPHER_CTX_init 3 101.Xr EVP_CIPHER_CTX_new 3
102and 102and
103.Xr HMAC_CTX_init 3 , 103.Xr HMAC_CTX_new 3 ,
104respectively. 104respectively.
105.Pp 105.Pp
106For new sessions tickets, when the client doesn't present a session 106For new sessions tickets, when the client doesn't present a session