From 6ad52252688bb34f90b5e79da4830a927e87b81f Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Thu, 7 Jul 2016 15:03:33 +0200 Subject: [PATCH] removing forgotten debug comment --- src/pk/dsa/dsa_make_key.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pk/dsa/dsa_make_key.c b/src/pk/dsa/dsa_make_key.c index 44ad207..0cca7a8 100644 --- a/src/pk/dsa/dsa_make_key.c +++ b/src/pk/dsa/dsa_make_key.c @@ -130,7 +130,6 @@ int dsa_make_params(prng_state *prng, int wprng, int group_size, int modulus_siz /* p */ if ((err = mp_read_unsigned_bin(seedinc, sbuf, seedbytes)) != CRYPT_OK) { goto cleanup; } - /* printf("seed="); mp_fwrite(seedinc, 16, stdout); printf("\n"); //XXX-DEBUG */ if ((err = mp_add(q, q, t2q)) != CRYPT_OK) { goto cleanup; } for(counter=0; counter < 4*L && !found_p; counter++) { for(j=0; j<=n; j++) {