From f651a6502e20766293aa82ef95afef9818240c88 Mon Sep 17 00:00:00 2001 From: weidai Date: Mon, 16 Apr 2007 00:13:46 +0000 Subject: [PATCH] fix comment typo --- rsa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());