summaryrefslogtreecommitdiff
path: root/curve25519.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2014-08-18 22:18:54 +0200
committerNiels Möller <nisse@lysator.liu.se>2014-08-18 22:18:54 +0200
commit6c8d40f7134bf4069a4ef56c16fa21095fe6f577 (patch)
tree542ac6e381669e4a0ffca66ddb5a9d0ebda26f50 /curve25519.h
parentd55f928a1f6b20e9923041d7323404c3cbc221f0 (diff)
downloadnettle-6c8d40f7134bf4069a4ef56c16fa21095fe6f577.tar.gz
Renamed curve25519_base -> curve25519_mul_g.
Diffstat (limited to 'curve25519.h')
-rw-r--r--curve25519.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/curve25519.h b/curve25519.h
index 66a5c80f..03cb151d 100644
--- a/curve25519.h
+++ b/curve25519.h
@@ -39,11 +39,11 @@ extern "C" {
#endif
/* Name mangling */
-#define curve25519_base nettle_curve25519_base
+#define curve25519_mul_g nettle_curve25519_mul_g
#define CURVE25519_SIZE 32
void
-curve25519_base (uint8_t *q, const uint8_t *n);
-
+curve25519_mul_g (uint8_t *q, const uint8_t *n);
+
#endif /* NETTLE_CURVE25519_H */