From d97ecc7d50a54a95f47942c2833f563329bab664 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 16 Apr 2007 00:13:46 +0000 Subject: [PATCH] fix comment typo --- trunk/c5/rsa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/c5/rsa.cpp b/trunk/c5/rsa.cpp index f1e728a6..c52673b3 100644 --- a/trunk/c5/rsa.cpp +++ b/trunk/c5/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());