From 54bb3f68e15dc7a9739df5a0d1ab70a446f94c95 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 28 Sep 2011 22:35:30 +0000 Subject: [PATCH] Fix output format for DSA2 parameter generation. --- fips/dsa/fips_dssvs.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fips/dsa/fips_dssvs.c b/fips/dsa/fips_dssvs.c index 3362a33e6c..3feb0ffe7c 100644 --- a/fips/dsa/fips_dssvs.c +++ b/fips/dsa/fips_dssvs.c @@ -145,7 +145,8 @@ static void pqg(FILE *in, FILE *out) fputs(buf,out); continue; } - fputs(buf,out); + if (strcmp(keyword, "Num") || pqg_type != PQG_PQ) + fputs(buf,out); if(!strcmp(keyword,"[mod")) { if (!parse_mod(value, &dsa2, &L, &N, &md)) @@ -193,7 +194,10 @@ static void pqg(FILE *in, FILE *out) fprintf(out, "H = %lx\n\n",h); } else + { + fprintf(out, "counter = %d\n",counter); fputs("\n", out); + } } } else if(!strcmp(keyword,"P")) -- 2.34.1