summaryrefslogtreecommitdiff
path: root/rw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rw.cpp')
-rw-r--r--rw.cpp2
1 files changed, 1 insertions, 1 deletions
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());