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