Optimized EC_METHODs need specific 'set_curve' and 'free' functions.
[openssl.git] / crypto / ec / ecp_mont.c
index bbc3c689dd12600f737e3c9244ce418e75d7703f..958adadc34e2c21935518d2fc557312c2b58be9c 100644 (file)
  *
  */
 
-#include <openssl/ec.h>
-
 #include "ec_lcl.h"
+
+
+const EC_METHOD *EC_GFp_mont_method(void)
+       {
+       static const EC_METHOD ret = {
+               ec_GFp_simple_group_init,
+               ec_GFp_mont_group_set_curve_GFp,
+               ec_GFp_mont_group_finish,
+               ec_GFp_mont_group_clear_finish,
+               ec_GFp_simple_group_copy,
+               ec_GFp_simple_group_set_generator,
+               /* TODO: 'set' and 'get' functions for EC_GROUPs */
+               ec_GFp_simple_point_init,
+               ec_GFp_simple_point_finish,
+               ec_GFp_simple_point_clear_finish,
+               ec_GFp_simple_point_copy,
+               /* TODO: 'set' and 'get' functions for EC_POINTs */
+               ec_GFp_simple_point2oct,
+               ec_GFp_simple_oct2point,
+               ec_GFp_simple_add,
+               ec_GFp_simple_dbl,
+               ec_GFp_simple_is_at_infinity,
+               ec_GFp_simple_is_on_curve,
+               ec_GFp_simple_make_affine,
+               ec_GFp_mont_field_mult,
+               ec_GFp_mont_field_sqr,
+               ec_GFp_mont_field_encode,
+               ec_GFp_mont_field_decode };
+
+       return &ret;
+       }