summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_mont.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-07 01:17:05 +0000
committerBodo Möller <bodo@openssl.org>2001-03-07 01:17:05 +0000
commit0657bf9c14598f52fe3cacd0c32d99458d97659e (patch)
tree86a9d09470853a6f1a29910a74425f3a4c64cead /crypto/ec/ecp_mont.c
parent5b438e9b0f82f7238e20408c98be4dbe70c4ef43 (diff)
Implement dispatcher for EC_GROUP and EC_POINT method functions.
Initial EC_GROUP_new_curve_GFp implementation.
Diffstat (limited to 'crypto/ec/ecp_mont.c')
-rw-r--r--crypto/ec/ecp_mont.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/ec/ecp_mont.c b/crypto/ec/ecp_mont.c
index 80476320b9..78fcbae61f 100644
--- a/crypto/ec/ecp_mont.c
+++ b/crypto/ec/ecp_mont.c
@@ -55,3 +55,14 @@
*/
#include "ec_lcl.h"
+
+
+const EC_METHOD *EC_GFp_mont_method(void)
+ {
+ static const EC_METHOD ret =
+ {
+ 0 /* XXX */
+ };
+
+ return &ret;
+ }