From 952c650b82f6dafa642ef09952a1987f2c998030 Mon Sep 17 00:00:00 2001 From: noloader Date: Tue, 30 Jun 2015 19:50:13 +0000 Subject: Fixed spelling error in attribution git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@559 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- rw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rw.cpp') diff --git a/rw.cpp b/rw.cpp index 0b9318b..36985c0 100644 --- a/rw.cpp +++ b/rw.cpp @@ -131,7 +131,7 @@ Integer InvertibleRWFunction::CalculateInverse(RandomNumberGenerator &rng, const do { 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 JPM. + // Squaring to satisfy Jacobi requirements suggested by Jean-Pierre Muench. r = modn.Square(r); rInv = modn.MultiplicativeInverse(r); } while (rInv.IsZero()); -- cgit v1.2.1