Skip to content

Commit d7d00c8

Browse files
author
gefeili
committed
Remove println of GeMSS
1 parent f89bd71 commit d7d00c8

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

core/src/main/java/org/bouncycastle/pqc/crypto/gemss/GeMSSEngine.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -319,14 +319,14 @@ else if (K <= 192)
319319
--HFEn_1rightmost;
320320
}
321321
//System.out.println(" " + ((HFEv & 7) != 0));
322-
if (HFEDeg > 34)
323-
{
324-
System.out.println(" " + (HFEnvr != 0));
325-
}
326-
else
327-
{
328-
System.out.println(" ");
329-
}
322+
// if (HFEDeg > 34)
323+
// {
324+
// System.out.println(" " + (HFEnvr != 0));
325+
// }
326+
// else
327+
// {
328+
// System.out.println(" ");
329+
// }
330330
}
331331

332332
int genSecretMQS_gf2_opt(Pointer MQS, Pointer F)

core/src/main/java/org/bouncycastle/pqc/crypto/gemss/GeMSSParameters.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ public class GeMSSParameters
9393
paramsToOid.put(magentagemss128, magentagemss_128);
9494
paramsToOid.put(magentagemss192, magentagemss_192);
9595
paramsToOid.put(magentagemss256, magentagemss_256);
96-
9796
}
9897

9998
private final String name;
@@ -103,7 +102,7 @@ private GeMSSParameters(String name, int K, int HFEn, int HFEv, int HFEDELTA, in
103102
int HFEDegI, int HFEDegJ)// int HFEs
104103
{
105104
this.name = name;
106-
System.out.print(name + " ");
105+
//System.out.print(name + " ");
107106
this.engine = new GeMSSEngine(K, HFEn, HFEv, HFEDELTA, NB_ITE, HFEDeg, HFEDegI, HFEDegJ);//, HFEs
108107
}
109108

0 commit comments

Comments
 (0)