summaryrefslogtreecommitdiff
path: root/ecc.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2014-07-08 10:22:31 +0200
committerNiels Möller <nisse@lysator.liu.se>2014-07-08 10:22:31 +0200
commit93ea0d33532c60d95b6a94e28a946bcc19b1420c (patch)
tree2e32d519517dd63e61937ebb30ddced3c2d99895 /ecc.h
parent2dd3d4558e924b3415864f8d6bb3cf9066e0429c (diff)
downloadnettle-93ea0d33532c60d95b6a94e28a946bcc19b1420c.tar.gz
Deleted left-over prototypes for ecc_a_to_a and ecc_a_to_a_itch.
Diffstat (limited to 'ecc.h')
-rw-r--r--ecc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/ecc.h b/ecc.h
index 7293186b..ca8c8c37 100644
--- a/ecc.h
+++ b/ecc.h
@@ -58,8 +58,6 @@ extern "C" {
#define ecc_size nettle_ecc_size
#define ecc_size_a nettle_ecc_size_a
#define ecc_size_j nettle_ecc_size_j
-#define ecc_a_to_a_itch nettle_ecc_a_to_a_itch
-#define ecc_a_to_a nettle_ecc_a_to_a
#define ecc_a_to_j nettle_ecc_a_to_j
#define ecc_j_to_a_itch nettle_ecc_j_to_a_itch
#define ecc_j_to_a nettle_ecc_j_to_a
@@ -168,15 +166,6 @@ ecc_size_j (const struct ecc_curve *ecc);
_ecc_*, and provide public ecc_* functions which handle the
infinity points properly? */
-/* Converts the affine coordinates of a point into montgomery form, if
- used for this curve. */
-mp_size_t
-ecc_a_to_a_itch (const struct ecc_curve *ecc);
-void
-ecc_a_to_a (const struct ecc_curve *ecc,
- mp_limb_t *r, const mp_limb_t *p,
- mp_limb_t *scratch);
-
/* Converts a point P in affine coordinates into a point R in jacobian
coordinates. If INITIAL is non-zero, and the curve uses montgomery
coordinates, also convert coordinates to montgomery form. */