summaryrefslogtreecommitdiffstats
path: root/lib/libssl/tls13_record_layer.c
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2019-11-17 18:42:17 +0000
committertb <tb@openbsd.org>2019-11-17 18:42:17 +0000
commitb5c202d7db2f570845aa0f4b39c562ea7383e9e0 (patch)
treeaa0efb2d2ce8cdc6c09422daf720a6f00046aed3 /lib/libssl/tls13_record_layer.c
parentEnsure that we are never operating in plaintext mode once the handshake (diff)
downloadwireguard-openbsd-b5c202d7db2f570845aa0f4b39c562ea7383e9e0.tar.xz
wireguard-openbsd-b5c202d7db2f570845aa0f4b39c562ea7383e9e0.zip
Add a reference for the non-standard post-handshake handshake (PHH).
ok beck, jsing
Diffstat (limited to 'lib/libssl/tls13_record_layer.c')
-rw-r--r--lib/libssl/tls13_record_layer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/tls13_record_layer.c b/lib/libssl/tls13_record_layer.c
index 5487e005e47..9458024ef33 100644
--- a/lib/libssl/tls13_record_layer.c
+++ b/lib/libssl/tls13_record_layer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_record_layer.c,v 1.12 2019/11/17 18:27:16 jsing Exp $ */
+/* $OpenBSD: tls13_record_layer.c,v 1.13 2019/11/17 18:42:17 tb Exp $ */
/*
* Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
*
@@ -51,7 +51,7 @@ struct tls13_record_layer {
uint8_t *alert_data;
size_t alert_len;
- /* Pending post-handshake handshake messages. */
+ /* Pending post-handshake handshake messages (RFC 8446, section 4.6). */
CBS phh_cbs;
uint8_t *phh_data;
size_t phh_len;