From 8a2908a24a7161c8aade1a4b307bd59f038faba5 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 21 Mar 2001 12:34:34 +0000 Subject: [PATCH] Since they aren't implemented yet, EC_GFp_{recp,nist}_method() need to be "#if 0"'d, or they will (re)appear as existing functions in util/libeay.num. --- crypto/ec/ec.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/ec/ec.h b/crypto/ec/ec.h index 7f7f7078ef..7c333b20f1 100644 --- a/crypto/ec/ec.h +++ b/crypto/ec/ec.h @@ -96,8 +96,10 @@ typedef struct ec_point_st EC_POINT; */ const EC_METHOD *EC_GFp_simple_method(void); const EC_METHOD *EC_GFp_mont_method(void); +#if 0 const EC_METHOD *EC_GFp_recp_method(void); /* TODO */ const EC_METHOD *EC_GFp_nist_method(void); /* TODO */ +#endif EC_GROUP *EC_GROUP_new(const EC_METHOD *); -- 2.25.1