diff options
author | 2019-11-17 18:42:17 +0000 | |
---|---|---|
committer | 2019-11-17 18:42:17 +0000 | |
commit | b5c202d7db2f570845aa0f4b39c562ea7383e9e0 (patch) | |
tree | aa0efb2d2ce8cdc6c09422daf720a6f00046aed3 /lib/libssl/tls13_record_layer.c | |
parent | Ensure that we are never operating in plaintext mode once the handshake (diff) | |
download | wireguard-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.c | 4 |
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; |