summaryrefslogtreecommitdiff
path: root/lib/libcrypto/hidden/openssl
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-03-02 09:25:00 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-03-02 09:25:00 +0000
commit96ad4157c52e9d25b8a58afbd251a6b582d8217f (patch)
treec7535654482f9b29b304a52a8f8327edd1a077a9 /lib/libcrypto/hidden/openssl
parentf4ff54ba7dc5d599b32fa852c716e67faedc7e6c (diff)
Make BN_mod_exp_simple() internal
This function is very slow and useful for testing purposes only. It should never have been part of the public API. Remove it from there. ok jsing
Diffstat (limited to 'lib/libcrypto/hidden/openssl')
-rw-r--r--lib/libcrypto/hidden/openssl/bn.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/hidden/openssl/bn.h b/lib/libcrypto/hidden/openssl/bn.h
index 9942cf6fc74..1aa5b10d9d6 100644
--- a/lib/libcrypto/hidden/openssl/bn.h
+++ b/lib/libcrypto/hidden/openssl/bn.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn.h,v 1.4 2023/07/29 03:13:38 tb Exp $ */
+/* $OpenBSD: bn.h,v 1.5 2024/03/02 09:24:59 tb Exp $ */
/*
* Copyright (c) 2023 Bob Beck <beck@openbsd.org>
*
@@ -99,7 +99,6 @@ LCRYPTO_USED(BN_exp);
LCRYPTO_USED(BN_mod_exp_mont_consttime);
LCRYPTO_USED(BN_mod_exp_mont_word);
LCRYPTO_USED(BN_mod_exp2_mont);
-LCRYPTO_USED(BN_mod_exp_simple);
LCRYPTO_USED(BN_mask_bits);
LCRYPTO_USED(BN_print_fp);
LCRYPTO_USED(BN_print);