aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dropbear/Config.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-03-29 16:59:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-03-29 16:59:26 +0000
commitad52658be722f2024dd645a1a7228209e8bf7c23 (patch)
tree3781e39aa0e8d75676750651bfd96bbb1af89d13 /package/network/services/dropbear/Config.in
parentf5fce5e0da49d27caec70d64695b4a2d9bab8d44 (diff)
downloadupstream-ad52658be722f2024dd645a1a7228209e8bf7c23.tar.gz
upstream-ad52658be722f2024dd645a1a7228209e8bf7c23.tar.bz2
upstream-ad52658be722f2024dd645a1a7228209e8bf7c23.zip
dropbear: update to 2014.63
Upstream changelog: https://matt.ucc.asn.au/dropbear/CHANGES This adds elliptic curve cryptography (ECC) support as an option, disabled by default. dropbear mips 34kc uClibc binary size: before: 161,672 bytes after, without ECC (default): 164,968 after, with ECC: 198,008 Signed-off-by: Catalin Patulea <cat@vv.carleton.ca> SVN-Revision: 40297
Diffstat (limited to 'package/network/services/dropbear/Config.in')
-rw-r--r--package/network/services/dropbear/Config.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/network/services/dropbear/Config.in b/package/network/services/dropbear/Config.in
new file mode 100644
index 0000000000..e2a761034f
--- /dev/null
+++ b/package/network/services/dropbear/Config.in
@@ -0,0 +1,27 @@
+menu "Configuration"
+ depends on PACKAGE_dropbear
+
+config DROPBEAR_ECC
+ bool "Elliptic curve cryptography (ECC)"
+ default n
+ help
+ Enables elliptic curve cryptography (ECC) support in key exchange and public key
+ authentication.
+
+ Key exchange algorithms:
+ ecdh-sha2-nistp256
+ ecdh-sha2-nistp384
+ ecdh-sha2-nistp521
+ curve25519-sha256@libssh.org
+
+ Public key algorithms:
+ ecdsa-sha2-nistp256
+ ecdsa-sha2-nistp384
+ ecdsa-sha2-nistp521
+
+ 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).
+
+endmenu