diff options
author | 2019-01-23 18:24:40 +0000 | |
---|---|---|
committer | 2019-01-23 18:24:40 +0000 | |
commit | 174eabd668f4b74e79dba920baae32fa1a58847c (patch) | |
tree | 20ed8a8882c1feb5f9b1b110a83c8b9d8061628e /lib/libssl/ssl_tlsext.h | |
parent | Modify sigalgs extension processing for TLS 1.3. (diff) | |
download | wireguard-openbsd-174eabd668f4b74e79dba920baae32fa1a58847c.tar.xz wireguard-openbsd-174eabd668f4b74e79dba920baae32fa1a58847c.zip |
revert previous, accidentally contained another diff in addition
to the one I intended to commit
Diffstat (limited to 'lib/libssl/ssl_tlsext.h')
-rw-r--r-- | lib/libssl/ssl_tlsext.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libssl/ssl_tlsext.h b/lib/libssl/ssl_tlsext.h index 8472a8058b1..e82be579d0e 100644 --- a/lib/libssl/ssl_tlsext.h +++ b/lib/libssl/ssl_tlsext.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_tlsext.h,v 1.18 2019/01/23 16:46:04 beck Exp $ */ +/* $OpenBSD: ssl_tlsext.h,v 1.19 2019/01/23 18:24:40 beck Exp $ */ /* * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> @@ -101,13 +101,6 @@ int tlsext_keyshare_server_needs(SSL *s); int tlsext_keyshare_server_build(SSL *s, CBB *cbb); int tlsext_keyshare_server_parse(SSL *s, CBS *cbs, int *alert); -int tlsext_cookie_client_needs(SSL *s); -int tlsext_cookie_client_build(SSL *s, CBB *cbb); -int tlsext_cookie_client_parse(SSL *s, CBS *cbs, int *alert); -int tlsext_cookie_server_needs(SSL *s); -int tlsext_cookie_server_build(SSL *s, CBB *cbb); -int tlsext_cookie_server_parse(SSL *s, CBS *cbs, int *alert); - #ifndef OPENSSL_NO_SRTP int tlsext_srtp_client_needs(SSL *s); int tlsext_srtp_client_build(SSL *s, CBB *cbb); @@ -123,7 +116,6 @@ int tlsext_client_parse(SSL *s, CBS *cbs, int *alert, uint16_t msg_type); int tlsext_server_build(SSL *s, CBB *cbb, uint16_t msg_type); int tlsext_server_parse(SSL *s, CBS *cbs, int *alert, uint16_t msg_type); -struct tls_extension *tls_extension_find(uint16_t, size_t *); __END_HIDDEN_DECLS #endif |