From 9396dc46ec5aba9c19d535d2d8088a82f354c7a8 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 30 Jul 2018 15:58:44 -0400 Subject: [PATCH] Update comments --- validat6.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/validat6.cpp b/validat6.cpp index 6494bf19..8f20a8de 100644 --- a/validat6.cpp +++ b/validat6.cpp @@ -240,7 +240,9 @@ bool ValidateBBS() bool ValidateECP() { - std::cout << "\nTesting SEC 2, NIST, and Brainpool recommended curves...\n\n"; + // Remove word recommend. Some ECP curves may not be recommended depending + // on whom you ask. ECP is more descriptive item in this case. + std::cout << "\nTesting SEC 2, NIST and Brainpool ECP curves...\n\n"; bool pass = true; OID oid; while (!(oid = DL_GroupParameters_EC::GetNextRecommendedParametersOID(oid)).GetValues().empty()) @@ -257,7 +259,9 @@ bool ValidateECP() bool ValidateEC2N() { - std::cout << "\nTesting SEC 2 recommended curves...\n\n"; + // Remove word recommend. Binary curves may not be recommended depending + // on whom you ask. EC2N is more descriptive item in this case. + std::cout << "\nTesting SEC 2 EC2N curves...\n\n"; bool pass = true; OID oid; #if 1 // TODO: turn this back on when I make EC2N faster for pentanomial basis