summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/bn_test.c
diff options
context:
space:
mode:
authortb <>2023-04-25 17:17:21 +0000
committertb <>2023-04-25 17:17:21 +0000
commit0485b37a1da5a757c20fec04ad0e945f556bfffc (patch)
tree0f08415c27e41ee8bfea7dfadcac9698af9f5181 /src/regress/lib/libcrypto/bn/bn_test.c
parent40b54d8027905be4dfb3c5685a568e5bfe934136 (diff)
downloadopenbsd-0485b37a1da5a757c20fec04ad0e945f556bfffc.tar.gz
openbsd-0485b37a1da5a757c20fec04ad0e945f556bfffc.tar.bz2
openbsd-0485b37a1da5a757c20fec04ad0e945f556bfffc.zip
Remove a couple of temporary hacks
Diffstat (limited to 'src/regress/lib/libcrypto/bn/bn_test.c')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_test.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_test.c b/src/regress/lib/libcrypto/bn/bn_test.c
index 528238025d..f73799b3a8 100644
--- a/src/regress/lib/libcrypto/bn/bn_test.c
+++ b/src/regress/lib/libcrypto/bn/bn_test.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_test.c,v 1.18 2023/04/25 15:33:25 tb Exp $ */ 1/* $OpenBSD: bn_test.c,v 1.19 2023/04/25 17:17:21 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -79,18 +79,6 @@
79 79
80#include "bn_local.h" 80#include "bn_local.h"
81 81
82/* XXX - remove these once bn_local.h is fixed. */
83void BN_RECP_CTX_init(BN_RECP_CTX *recp);
84BN_RECP_CTX *BN_RECP_CTX_new(void);
85void BN_RECP_CTX_free(BN_RECP_CTX *recp);
86int BN_RECP_CTX_set(BN_RECP_CTX *recp, const BIGNUM *rdiv, BN_CTX *ctx);
87int BN_mod_mul_reciprocal(BIGNUM *r, const BIGNUM *x, const BIGNUM *y,
88 BN_RECP_CTX *recp, BN_CTX *ctx);
89int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
90 const BIGNUM *m, BN_CTX *ctx);
91int BN_div_recp(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m,
92 BN_RECP_CTX *recp, BN_CTX *ctx);
93
94const int num0 = 100; /* number of tests */ 82const int num0 = 100; /* number of tests */
95const int num1 = 50; /* additional tests for some functions */ 83const int num1 = 50; /* additional tests for some functions */
96const int num2 = 5; /* number of tests for slow functions */ 84const int num2 = 5; /* number of tests for slow functions */