removing forgotten debug comment

This commit is contained in:
Karel Miko 2016-07-07 15:03:33 +02:00
parent bb56ef08eb
commit 6ad5225268

View File

@ -130,7 +130,6 @@ int dsa_make_params(prng_state *prng, int wprng, int group_size, int modulus_siz
/* p */ /* p */
if ((err = mp_read_unsigned_bin(seedinc, sbuf, seedbytes)) != CRYPT_OK) { goto cleanup; } 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; } if ((err = mp_add(q, q, t2q)) != CRYPT_OK) { goto cleanup; }
for(counter=0; counter < 4*L && !found_p; counter++) { for(counter=0; counter < 4*L && !found_p; counter++) {
for(j=0; j<=n; j++) { for(j=0; j<=n; j++) {