summaryrefslogtreecommitdiff
path: root/src/ltc/pk/ecc/ecc_dp_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ltc/pk/ecc/ecc_dp_init.c')
-rw-r--r--src/ltc/pk/ecc/ecc_dp_init.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/ltc/pk/ecc/ecc_dp_init.c b/src/ltc/pk/ecc/ecc_dp_init.c
deleted file mode 100644
index 36c8f5c6..00000000
--- a/src/ltc/pk/ecc/ecc_dp_init.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/* LibTomCrypt, modular cryptographic library -- Tom St Denis
- *
- * LibTomCrypt is a library that provides various cryptographic
- * algorithms in a highly modular and flexible manner.
- *
- * The library is free for all purposes without any express
- * guarantee it works.
- *
- */
-
-/* Implements ECC over Z/pZ for curve y^2 = x^3 + a*x + b
- *
- */
-
-#include "tomcrypt.h"
-
-#ifdef LTC_MECC
-
-int ecc_dp_init(ltc_ecc_set_type *dp)
-{
- if (dp == NULL) return CRYPT_INVALID_ARG;
-
- dp->name = NULL;
- dp->prime = NULL;
- dp->A = NULL;
- dp->B = NULL;
- dp->order = NULL;
- dp->Gx = NULL;
- dp->Gy = NULL;
- dp->oid.OIDlen = 0;
- dp->cofactor = 0;
-
- return CRYPT_OK;
-}
-
-#endif