summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_depr.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-10-29 05:35:31 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-10-29 05:35:31 +0000
commitdb59141467aa424c3fb5656ffa4355e3740dad1a (patch)
tree52ec25dcbba0b4f2d890b3d1ed30c5423c3b7762 /crypto/bn/bn_depr.c
parent8a66d17899e6ed3ccdb2feb878e5d77d35753494 (diff)
remove accidentally committed debugging cruft.
Diffstat (limited to 'crypto/bn/bn_depr.c')
-rw-r--r--crypto/bn/bn_depr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bn/bn_depr.c b/crypto/bn/bn_depr.c
index 09ad52e7c6..27535e4fca 100644
--- a/crypto/bn/bn_depr.c
+++ b/crypto/bn/bn_depr.c
@@ -81,7 +81,6 @@ BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
}
else
rnd=ret;
- bn_verify(rnd);
if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
goto err;
@@ -89,7 +88,6 @@ BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
found = 1;
err:
if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd);
- if(found) bn_verify(rnd);
return(found ? rnd : NULL);
}