diff options
author | Tom Vrancken <dev@tomvrancken.nl> | 2018-05-29 15:53:45 +0200 |
---|---|---|
committer | Tom Vrancken <dev@tomvrancken.nl> | 2018-05-29 15:53:45 +0200 |
commit | 4937f7643e9803655661402f746897aa631c1957 (patch) | |
tree | 8fbc828c0a5b64812f85ad6abd67e3a0a08d0b70 /lib/auth | |
parent | 18577229613aceaebb4b060aebf7945a0380ef0f (diff) | |
download | gnutls-4937f7643e9803655661402f746897aa631c1957.tar.gz |
Renamed extension supported ECC to supported groups. Fixes #451.
Split combined ECC extensions into different files.
Signed-off-by: Tom Vrancken <dev@tomvrancken.nl>
Diffstat (limited to 'lib/auth')
-rw-r--r-- | lib/auth/anon_ecdh.c | 2 | ||||
-rw-r--r-- | lib/auth/ecdhe.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/auth/anon_ecdh.c b/lib/auth/anon_ecdh.c index 2872427eea..7b9a7f65bf 100644 --- a/lib/auth/anon_ecdh.c +++ b/lib/auth/anon_ecdh.c @@ -37,7 +37,7 @@ #include "mpi.h" #include <state.h> #include <auth/ecdhe.h> -#include <ext/ecc.h> +#include <ext/supported_groups.h> static int gen_anon_ecdh_server_kx(gnutls_session_t, gnutls_buffer_st *); static int proc_anon_ecdh_client_kx(gnutls_session_t, uint8_t *, size_t); diff --git a/lib/auth/ecdhe.c b/lib/auth/ecdhe.c index c9369619dc..8b55704b28 100644 --- a/lib/auth/ecdhe.c +++ b/lib/auth/ecdhe.c @@ -37,7 +37,7 @@ #include <x509.h> #include <auth/ecdhe.h> #include <ecc.h> -#include <ext/ecc.h> +#include <ext/supported_groups.h> #include <algorithms.h> #include <auth/psk.h> #include <auth/cert.h> |