Fix typo from #10631

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11595)
This commit is contained in:
Nicola Tuveri 2020-04-21 18:34:17 +03:00
parent 2b9bafe607
commit 4692e98bdb

View File

@ -688,7 +688,7 @@ int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key)
* This is important also because `BN_dup()` (and `BN_copy()`) do not * This is important also because `BN_dup()` (and `BN_copy()`) do not
* propagate the `BN_FLG_CONSTTIME` flag from the source `BIGNUM`, and * propagate the `BN_FLG_CONSTTIME` flag from the source `BIGNUM`, and
* this brings an extra risk of inadvertently losing the flag, even when * this brings an extra risk of inadvertently losing the flag, even when
* the called specifically set it. * the caller specifically set it.
* *
* The propagation has been turned on and off a few times in the past * The propagation has been turned on and off a few times in the past
* years because in some conditions has shown unintended consequences in * years because in some conditions has shown unintended consequences in