diff options
author | 2019-02-07 15:54:18 +0000 | |
---|---|---|
committer | 2019-02-07 15:54:18 +0000 | |
commit | 3fd04f17704ac22f578ca5254aa4549f7b5e3538 (patch) | |
tree | dcde75741c102d7bec40b6cb7104b68418e370fc /lib/libssl/tls13_handshake.c | |
parent | sync (diff) | |
download | wireguard-openbsd-3fd04f17704ac22f578ca5254aa4549f7b5e3538.tar.xz wireguard-openbsd-3fd04f17704ac22f578ca5254aa4549f7b5e3538.zip |
Implement processing of EncryptedExtensions in the TLS 1.3 client.
ok bcook@ tb@
Diffstat (limited to 'lib/libssl/tls13_handshake.c')
-rw-r--r-- | lib/libssl/tls13_handshake.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libssl/tls13_handshake.c b/lib/libssl/tls13_handshake.c index b3c08ef39c1..68d6a9d4444 100644 --- a/lib/libssl/tls13_handshake.c +++ b/lib/libssl/tls13_handshake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_handshake.c,v 1.23 2019/02/04 16:18:15 jsing Exp $ */ +/* $OpenBSD: tls13_handshake.c,v 1.24 2019/02/07 15:54:18 jsing Exp $ */ /* * Copyright (c) 2018-2019 Theo Buehler <tb@openbsd.org> * Copyright (c) 2019 Joel Sing <jsing@openbsd.org> @@ -475,12 +475,6 @@ tls13_server_hello_send(struct tls13_ctx *ctx) } int -tls13_server_encrypted_extensions_recv(struct tls13_ctx *ctx) -{ - return 0; -} - -int tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx) { return 0; |