From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 04 Jul 2022 14:19:28 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1o8L2y-005XTr-N0 for lore@lore.pengutronix.de; Mon, 04 Jul 2022 14:19:28 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o8L2x-0003h7-PE; Mon, 04 Jul 2022 14:19:23 +0200 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1o8L28-0002vg-8r for ptxdist@pengutronix.de; Mon, 04 Jul 2022 14:18:34 +0200 Received: from adahl by ada.ifak-system.com with local (Exim 4.92) (envelope-from ) id 1o8L27-0006Ce-9Y; Mon, 04 Jul 2022 14:18:31 +0200 From: Alexander Dahl To: ptxdist@pengutronix.de Date: Mon, 4 Jul 2022 14:18:28 +0200 Message-Id: <20220704121831.23787-6-ada@thorsis.com> In-Reply-To: <20220704121831.23787-1-ada@thorsis.com> References: <20220704121831.23787-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.6 required=4.0 tests=AWL,BAYES_00,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH 5/8] dropbear: Append hints to some menu prompts X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Ian Abbott , Bruno Thomsen Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false We present multiple options in the menu here, so add some more guidance for the non experienced user. Signed-off-by: Alexander Dahl --- rules/dropbear.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rules/dropbear.in b/rules/dropbear.in index 375d4c57c..f7f96a762 100644 --- a/rules/dropbear.in +++ b/rules/dropbear.in @@ -149,7 +149,7 @@ config DROPBEAR_AES128 config DROPBEAR_3DES bool - prompt "3DES" + prompt "3DES (legacy)" help DES is an IBM algorithm designed during the 1970s. In 1976, NIST has officially adopted it as an encryption @@ -181,7 +181,7 @@ config DROPBEAR_CHACHA20POLY1305 config DROPBEAR_CBC_CIPHERS bool - prompt "CBC mode ciphers" + prompt "CBC mode ciphers (legacy)" help Enable CBC mode for ciphers. This has security issues though is the most compatible with older SSH implementations. @@ -195,11 +195,11 @@ config DROPBEAR_CTR_CIPHERS CBC mode against certain attacks. This adds around 1kB to binary size and is recommended for most cases. -comment "Integrity, at least one required --- sha2-256 is recommended as a default, sha1 for compatibility" +comment "Message Integrity (HMAC), at least one required ---" config DROPBEAR_SHA1 bool - prompt "sha1" + prompt "sha1 (compat)" help The Secure Hash Algorithm (SHA) was developed by NIST and is specified in the Secure Hash Standard (SHS, FIPS 180). @@ -211,7 +211,7 @@ config DROPBEAR_SHA1 config DROPBEAR_SHA1_96 bool - prompt "sha1-96" + prompt "sha1-96 (legacy)" help The Secure Hash Algorithm (SHA) was developed by NIST and is specified in the Secure Hash Standard (SHS, FIPS 180). @@ -223,7 +223,7 @@ config DROPBEAR_SHA1_96 config DROPBEAR_SHA256 bool - prompt "sha256" + prompt "sha256 (recommended)" default y help SHA-2 is a set of cryptographic hash functions (SHA-224, SHA-256, -- 2.30.2