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