From: Richard Levitte Date: Wed, 21 Mar 2001 12:34:34 +0000 (+0000) Subject: Since they aren't implemented yet, EC_GFp_{recp,nist}_method() need to X-Git-Tag: OpenSSL_0_9_6c~182^2~336 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8a2908a24a7161c8aade1a4b307bd59f038faba5;p=oweals%2Fopenssl.git 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. --- 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 *);