From: Billy Brumley Date: Fri, 6 Sep 2019 14:26:40 +0000 (+0300) Subject: CHANGES entry: for ECC parameters with NULL or zero cofactor, compute it X-Git-Tag: OpenSSL_1_1_1d~20 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a6186f39802f94937a46f7a41ef0c86b6334b592;p=oweals%2Fopenssl.git CHANGES entry: for ECC parameters with NULL or zero cofactor, compute it Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz Reviewed-by: Nicola Tuveri (Merged from https://github.com/openssl/openssl/pull/9781) --- diff --git a/CHANGES b/CHANGES index 8f732cb303..d34bba83fe 100644 --- a/CHANGES +++ b/CHANGES @@ -9,6 +9,12 @@ Changes between 1.1.1c and 1.1.1d [xx XXX xxxx] + *) Compute ECC cofactors if not provided during EC_GROUP construction. Before + this change, EC_GROUP_set_generator would accept order and/or cofactor as + NULL. After this change, only the cofactor parameter can be NULL. It also + does some minimal sanity checks on the passed order. + [Billy Bob Brumley] + *) Early start up entropy quality from the DEVRANDOM seed source has been improved for older Linux systems. The RAND subsystem will wait for /dev/random to be producing output before seeding from /dev/urandom.