From aa73b950fa096ac0e34a38976d2c4956c7f7d8e1 Mon Sep 17 00:00:00 2001 From: noloader Date: Thu, 2 Jul 2015 21:51:28 +0000 Subject: Fixed spelling error in attribution git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@566 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- rw.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rw.cpp b/rw.cpp index e8916e9..f573fc3 100644 --- a/rw.cpp +++ b/rw.cpp @@ -194,10 +194,10 @@ Integer InvertibleRWFunction::CalculateInverse(RandomNumberGenerator &rng, const // Do this in a loop for people using small numbers for testing r.Randomize(rng, Integer::One(), m_n - Integer::One()); // Fix for CVE-2015-2141. Thanks to Evgeny Sidorov for reporting. - // Squaring to satisfy Jacobi requirements suggested by Jean-Pierre Munch. + // Squaring to satisfy Jacobi requirements suggested by Jean-Pierre Muench. r = modn.Square(r); rInv = modn.MultiplicativeInverse(r); - } while(rInv.IsZero()); + } while (rInv.IsZero()); Integer re = modn.Square(r); re = modn.Multiply(re, x); // blind -- cgit v1.2.1