[openwrt/openwrt] mbedtls: Activate secp521r1 curve by default

LEDE Commits lede-commits at lists.infradead.org
Mon Nov 6 14:06:03 PST 2023


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/3c17cdbc369d89ff6a7911c3acff2e493778f6c1

commit 3c17cdbc369d89ff6a7911c3acff2e493778f6c1
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sun Nov 5 23:05:24 2023 +0100

    mbedtls: Activate secp521r1 curve by default
    
    Activate the secp521r1 ecliptic curve by default. This curve is allowed
    by the CA/Browser forum, see
    https://cabforum.org/wp-content/uploads/CA-Browser-Forum-BR-v2.0.1-redlined.pdf#page=110
    
    This increases the size of libmbedtls12_2.28.5-1_aarch64_generic.ipk by
    about 400 bytes:
    Without:
    252,696 libmbedtls12_2.28.5-1_aarch64_generic.ipk
    With:
    253,088 libmbedtls12_2.28.5-2_aarch64_generic.ipk
    
    Fixes: #13774
    Acked-by: Koen Vandeputte <koen.vandeputte at citymesh.com>
    Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
 package/libs/mbedtls/Config.in | 2 +-
 package/libs/mbedtls/Makefile  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libs/mbedtls/Config.in b/package/libs/mbedtls/Config.in
index ffabd799d3..9fbe9f8a4a 100644
--- a/package/libs/mbedtls/Config.in
+++ b/package/libs/mbedtls/Config.in
@@ -104,7 +104,7 @@ config MBEDTLS_ECP_DP_SECP384R1_ENABLED
 
 config MBEDTLS_ECP_DP_SECP521R1_ENABLED
 	bool "MBEDTLS_ECP_DP_SECP521R1_ENABLED"
-	default n
+	default y
 
 config MBEDTLS_ECP_DP_SECP192K1_ENABLED
 	bool "MBEDTLS_ECP_DP_SECP192K1_ENABLED"
diff --git a/package/libs/mbedtls/Makefile b/package/libs/mbedtls/Makefile
index 6f0b5162eb..246b21a853 100644
--- a/package/libs/mbedtls/Makefile
+++ b/package/libs/mbedtls/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=mbedtls
 PKG_VERSION:=2.28.5
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 PKG_BUILD_FLAGS:=no-mips16 gc-sections no-lto
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz




More information about the lede-commits mailing list