projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a66d17
)
remove accidentally committed debugging cruft.
author
Geoff Thorpe
<geoff@openssl.org>
Wed, 29 Oct 2003 05:35:31 +0000
(
05:35
+0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Wed, 29 Oct 2003 05:35:31 +0000
(
05:35
+0000)
crypto/bn/bn_depr.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_depr.c
b/crypto/bn/bn_depr.c
index 09ad52e7c63546cd0798c4210af4bfe0afec40cf..27535e4fca00810485d1a1813313d3e3b90b92e2 100644
(file)
--- 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);
}