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:
dcbd0d7
)
Undo previous commit, which was an accident.
author
Bodo Möller
<bodo@openssl.org>
Mon, 27 Nov 2000 21:22:45 +0000
(21:22 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Mon, 27 Nov 2000 21:22:45 +0000
(21:22 +0000)
crypto/bn/bntest.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bntest.c
b/crypto/bn/bntest.c
index 961706ed3f68fb0dffa022a52d45a231215b9f3d..0ade0c00120f9b999fc62c3bcb2931a17999b464 100644
(file)
--- a/
crypto/bn/bntest.c
+++ b/
crypto/bn/bntest.c
@@
-163,7
+163,6
@@
int main(int argc, char *argv[])
if (!results)
BIO_puts(out,"obase=16\nibase=16\n");
-#if 0
message(out,"BN_add");
if (!test_add(out)) goto err;
BIO_flush(out);
@@
-220,7
+219,6
@@
int main(int argc, char *argv[])
message(out,"BN_mont");
if (!test_mont(out,ctx)) goto err;
BIO_flush(out);
-#endif
message(out,"BN_mod_exp");
if (!test_mod_exp(out,ctx)) goto err;
@@
-813,8
+811,6
@@
int test_mod_exp(BIO *bp, BN_CTX *ctx)
BN_rand(a,20+i*5,0,0); /**/
BN_rand(b,2+i,0,0); /**/
- BN_kronecker(a,b,ctx);
-
if (!BN_mod_exp(d,a,b,c,ctx))
return(00);