Oops^2: It was the correct line, but an incorrect change.
[oweals/openssl.git] / crypto / ec / ec.h
index 7f7f7078efff6a49540d5edc4e27157220cad6dd..5c92edaea56497bc32356c29a88082ea93a8b233 100644 (file)
@@ -84,7 +84,7 @@ typedef struct ec_group_st
         -- field definition
         -- curve coefficients
         -- optional generator with associated information (order, cofactor)
-        -- optional extra data (Lim/Lee precomputation table)
+        -- optional extra data (TODO: precomputed table for fast computation of multiples of generator)
        */
        EC_GROUP;
 
@@ -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 *);