Browse Source

removing forgotten debug comment

Karel Miko 9 years ago
parent
commit
6ad5225268
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/pk/dsa/dsa_make_key.c

+ 0 - 1
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++) {