aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-03-21 12:34:34 +0000
committerRichard Levitte <levitte@openssl.org>2001-03-21 12:34:34 +0000
commit8a2908a24a7161c8aade1a4b307bd59f038faba5 (patch)
treefea7affc5a43c4c5b5306256aec5b326d166a936 /crypto/ec
parente8b12f7a6fc96978ecec8c71f7fd4d1e3da6d627 (diff)
downloadopenssl-8a2908a24a7161c8aade1a4b307bd59f038faba5.tar.gz
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.
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ec.h2
1 files changed, 2 insertions, 0 deletions
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 *);