From: Jouni Malinen Date: Sat, 27 Jul 2019 20:19:17 +0000 (+0300) Subject: dragonfly: Disable use of groups using Brainpool curves X-Git-Tag: hostap_2_9~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=876c5eaa6dae1a87a17603fc489a44c29eedc2e3;p=thirdparty%2Fhostap.git dragonfly: Disable use of groups using Brainpool curves Disable groups that use Brainpool curves for now since they leak more timing information due to the prime not being close to a power of two. This removes use of groups 28, 29, and 30 from SAE and EAP-pwd. Signed-off-by: Jouni Malinen --- diff --git a/src/common/dragonfly.c b/src/common/dragonfly.c index 233ae68a7..547be66f1 100644 --- a/src/common/dragonfly.c +++ b/src/common/dragonfly.c @@ -21,9 +21,11 @@ int dragonfly_suitable_group(int group, int ecc_only) * purposes: FFC groups whose prime is >= 3072 bits and ECC groups * defined over a prime field whose prime is >= 256 bits. Furthermore, * ECC groups defined over a characteristic 2 finite field and ECC - * groups with a co-factor greater than 1 are not suitable. */ + * groups with a co-factor greater than 1 are not suitable. Disable + * groups that use Brainpool curves as well for now since they leak more + * timing information due to the prime not being close to a power of + * two. */ return group == 19 || group == 20 || group == 21 || - group == 28 || group == 29 || group == 30 || (!ecc_only && (group == 15 || group == 16 || group == 17 || group == 18)); }