bn/bn_mod.c: harmonize BN_mod_add_quick with original implementation.
authorAndy Polyakov <appro@openssl.org>
Wed, 25 Jul 2018 08:29:51 +0000 (10:29 +0200)
committerAndy Polyakov <appro@openssl.org>
Wed, 1 Aug 2018 14:15:25 +0000 (16:15 +0200)
New implementation failed to correctly reset r->neg flag. Spotted by
OSSFuzz.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6810)

(cherry picked from commit 70a579ae2f37437a1e02331eeaa84e1b68ba021e)

crypto/bn/bn_mod.c

index df6f1e2452e3c56b8d9cf2e659fd94e64e359100..23ddd4805d8c3144d4e7f6aa469558c69233e1bd 100644 (file)
@@ -197,6 +197,7 @@ int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b,
         ((volatile BN_ULONG *)tp)[i] = 0;
     }
     r->top = mtop;
+    r->neg = 0;
 
     if (tp != storage)
         OPENSSL_free(tp);