From 1ac3d3637dd80013b78e03b9b9f582091710d908 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Wed, 23 Aug 2017 12:43:38 +0900 Subject: ecc: Clean up curve specific method support. * src/ec-context.h (struct mpi_ec_ctx_s): Remove MOD method. * mpi/ec.c (ec_mod_25519): Remove. (ec_p_init): Follow the removal of the MOD method. Signed-off-by: NIIBE Yutaka --- src/ec-context.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/ec-context.h') diff --git a/src/ec-context.h b/src/ec-context.h index 18b26a56..e48ef6f1 100644 --- a/src/ec-context.h +++ b/src/ec-context.h @@ -68,7 +68,6 @@ struct mpi_ec_ctx_s } t; /* Curve specific computation routines for the field. */ - void (* mod) (gcry_mpi_t w, mpi_ec_t ec); void (* addm) (gcry_mpi_t w, gcry_mpi_t u, gcry_mpi_t v, mpi_ec_t ctx); void (* subm) (gcry_mpi_t w, gcry_mpi_t u, gcry_mpi_t v, mpi_ec_t ec); void (* mulm) (gcry_mpi_t w, gcry_mpi_t u, gcry_mpi_t v, mpi_ec_t ctx); -- cgit v1.2.1