summaryrefslogtreecommitdiff
path: root/rsa.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-16 00:13:46 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-04-16 00:13:46 +0000
commitd77869e84603f1b0003d73894c7654df6fae328b (patch)
tree2f2fdda07380ceffa8df1bb793f7c45db0a4c5de /rsa.cpp
parentd0381e2915d5546da1b56f309d41c054089885d5 (diff)
downloadcryptopp-d77869e84603f1b0003d73894c7654df6fae328b.tar.gz
fix comment typo
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@296 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 f1e728a..c52673b 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());