From b19622044d492e9eff9d880d6bc1fc9486774886 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sun, 24 Jun 2018 21:27:41 +0200 Subject: [PATCH] mbedtls: Activate deterministic ECDSA With deterministic ECDSA the value k needed for the ECDSA signature is not randomly generated any more, but generated from a hash over the private key and the message to sign. If the value k used in a ECDSA signature or the relationship between the two values k used in two different ECDSA signatures over the same content is know to an attacker he can derive the private key pretty easily. Using deterministic ECDSA as defined in the RFC6979 removes this problem by deriving the value k deterministically from the private key and the content which gets signed. The resulting signature is still compatible to signatures generated not deterministic. This increases the size of the ipk on mips 24Kc by about 2 KByte. old: 166.240 libmbedtls_2.11.0-1_mips_24kc.ipk new: 167.811 libmbedtls_2.11.0-1_mips_24kc.ipk This does not change the ECDSA performance in a measurable way. Signed-off-by: Daniel Engberg Signed-off-by: Hauke Mehrtens --- package/libs/mbedtls/patches/200-config.patch | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/package/libs/mbedtls/patches/200-config.patch b/package/libs/mbedtls/patches/200-config.patch index e3e6d23ddd..d925ee3750 100644 --- a/package/libs/mbedtls/patches/200-config.patch +++ b/package/libs/mbedtls/patches/200-config.patch @@ -46,15 +46,6 @@ /** * \def MBEDTLS_ECP_NIST_OPTIM -@@ -656,7 +656,7 @@ - * - * Comment this macro to disable deterministic ECDSA. - */ --#define MBEDTLS_ECDSA_DETERMINISTIC -+//#define MBEDTLS_ECDSA_DETERMINISTIC - - /** - * \def MBEDTLS_KEY_EXCHANGE_PSK_ENABLED @@ -709,7 +709,7 @@ * See dhm.h for more details. * @@ -216,15 +207,6 @@ /** * \def MBEDTLS_HMAC_DRBG_C -@@ -2203,7 +2203,7 @@ - * - * Uncomment to enable the HMAC_DRBG random number geerator. - */ --#define MBEDTLS_HMAC_DRBG_C -+//#define MBEDTLS_HMAC_DRBG_C - - /** - * \def MBEDTLS_MD_C @@ -2486,7 +2486,7 @@ * * This module enables abstraction of common (libc) functions. -- 2.30.2