summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/bn_mod_exp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/bn/bn_mod_exp.c')
-rw-r--r--src/regress/lib/libcrypto/bn/bn_mod_exp.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
index c3f669bda1..c20ad72442 100644
--- a/src/regress/lib/libcrypto/bn/bn_mod_exp.c
+++ b/src/regress/lib/libcrypto/bn/bn_mod_exp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_mod_exp.c,v 1.36 2023/04/25 15:34:07 tb Exp $ */ 1/* $OpenBSD: bn_mod_exp.c,v 1.37 2023/04/25 17:17:21 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022,2023 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2022,2023 Theo Buehler <tb@openbsd.org>
@@ -28,9 +28,6 @@
28#define N_MOD_EXP_TESTS 100 28#define N_MOD_EXP_TESTS 100
29#define N_MOD_EXP2_TESTS 50 29#define N_MOD_EXP2_TESTS 50
30 30
31int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
32 const BIGNUM *m, BN_CTX *ctx);
33
34#define INIT_MOD_EXP_FN(f) { .name = #f, .mod_exp_fn = (f), } 31#define INIT_MOD_EXP_FN(f) { .name = #f, .mod_exp_fn = (f), }
35#define INIT_MOD_EXP_MONT_FN(f) { .name = #f, .mod_exp_mont_fn = (f), } 32#define INIT_MOD_EXP_MONT_FN(f) { .name = #f, .mod_exp_mont_fn = (f), }
36 33