Implement dispatcher for EC_GROUP and EC_POINT method functions.
[openssl.git] / crypto / ec / ecp_recp.c
index 89572875e0985d0881acef6b29b040ce8773c955..4bc2b7ebc507df6c857f5c75e03084338b94964b 100644 (file)
  *
  */
 
-#include <openssl/ec.h>
-
 #include "ec_lcl.h"
+
+
+const EC_METHOD *EC_GFp_recp_method(void)
+       {
+       static const EC_METHOD ret =
+               {
+                       0 /* XXX */
+               };
+
+       return &ret;
+       }