summaryrefslogtreecommitdiff
path: root/rsa.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-04-16 00:13:46 +0000
committerweidai <weidai11@users.noreply.github.com>2007-04-16 00:13:46 +0000
commitf651a6502e20766293aa82ef95afef9818240c88 (patch)
tree2f2fdda07380ceffa8df1bb793f7c45db0a4c5de /rsa.cpp
parente9669d172ff8891106d0da96811f889af45e29ad (diff)
downloadcryptopp-git-f651a6502e20766293aa82ef95afef9818240c88.tar.gz
fix comment typo
Diffstat (limited to 'rsa.cpp')
-rw-r--r--rsa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa.cpp b/rsa.cpp
index f1e728a6..c52673b3 100644
--- a/rsa.cpp
+++ b/rsa.cpp
@@ -225,7 +225,7 @@ Integer InvertibleRSAFunction::CalculateInverse(RandomNumberGenerator &rng, cons
DoQuickSanityCheck();
ModularArithmetic modn(m_n);
Integer r, rInv;
- do { // do this loop for people using small numbers for testing
+ do { // do this in a loop for people using small numbers for testing
r.Randomize(rng, Integer::One(), m_n - Integer::One());
rInv = modn.MultiplicativeInverse(r);
} while (rInv.IsZero());