Implement dispatcher for EC_GROUP and EC_POINT method functions.
[openssl.git] / crypto / ec / ecp_nist.c
index 1ecab88f8ed751f8ceb9970dec5ae86d919434d9..0c319c6aedb0ec735dc028fd740e6d774b838960 100644 (file)
  */
 
 #include "ec_lcl.h"
+
+
+const EC_METHOD *EC_GFp_nist_method(void)
+       {
+       static const EC_METHOD ret =
+               {
+                       0 /* XXX */
+               };
+
+       return &ret;
+       }