1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 01:38:11 +00:00

Enable GCM, too. I'm not clear on what it is but default_options.h says

it should be enabled for compatibility if you can spare 6kB of executable
size.  Anyways, it's new.
This commit is contained in:
Greg Alexander 2020-12-28 23:32:15 -05:00
parent d59d79da18
commit 62dcaa750a
2 changed files with 2 additions and 0 deletions

View File

@ -302,3 +302,4 @@ be overridden at runtime with -I. 0 disables idle timeouts */
#define BUNDLED_LIBTOM 1
#define DROPBEAR_ED25519 1
#define DROPBEAR_ENABLE_GCM_MODE 1

View File

@ -30,6 +30,7 @@ DROPBEAR_SRCS := $(DROPBEAR_PATH)/atomicio.c \
$(DROPBEAR_PATH)/ecdsa.c \
$(DROPBEAR_PATH)/ed25519.c \
$(DROPBEAR_PATH)/fake-rfc2553.c \
$(DROPBEAR_PATH)/gcm.c \
$(DROPBEAR_PATH)/gendss.c \
$(DROPBEAR_PATH)/gened25519.c \
$(DROPBEAR_PATH)/genrsa.c \