diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-10 22:38:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-10 22:38:53 +0000 |
commit | 1455b5b89af9fecaf957393aa33878e85d2826a9 (patch) | |
tree | e4e75ebec51d948a813b5b8e809e2e15ee725c8d /package/network/services/dropbear/Config.in | |
parent | 8c138d4ae85fd772a34f6d140ffb204813631260 (diff) | |
download | upstream-1455b5b89af9fecaf957393aa33878e85d2826a9.tar.gz upstream-1455b5b89af9fecaf957393aa33878e85d2826a9.tar.bz2 upstream-1455b5b89af9fecaf957393aa33878e85d2826a9.zip |
dropbear: split out curve25519 support into a separate config option
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48195
Diffstat (limited to 'package/network/services/dropbear/Config.in')
-rw-r--r-- | package/network/services/dropbear/Config.in | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/package/network/services/dropbear/Config.in b/package/network/services/dropbear/Config.in index e2a761034f..19ef71c0b2 100644 --- a/package/network/services/dropbear/Config.in +++ b/package/network/services/dropbear/Config.in @@ -1,6 +1,15 @@ menu "Configuration" depends on PACKAGE_dropbear +config DROPBEAR_CURVE25519 + bool "Curve25519 support" + default n + help + This enables the following key exchange algorithm: + curve25519-sha256@libssh.org + + Increases binary size by about 13 kB uncompressed (MIPS). + config DROPBEAR_ECC bool "Elliptic curve cryptography (ECC)" default n @@ -12,7 +21,6 @@ config DROPBEAR_ECC ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521 - curve25519-sha256@libssh.org Public key algorithms: ecdsa-sha2-nistp256 @@ -22,6 +30,6 @@ config DROPBEAR_ECC Does not generate ECC host keys by default (ECC key exchange will not be used, only ECC public key auth). - Increases binary size by about 36 kB (MIPS). + Increases binary size by about 23 kB (MIPS). endmenu |