diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2020-01-07 01:16:44 +0300 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2020-01-10 20:17:13 +0100 |
commit | 34fbd9910a779c7fb5bb7ccc07e4ae68ae35e997 (patch) | |
tree | 916229b3fe59a03076db078d625b7ca7e1258544 /ecc-curve25519.c | |
parent | abfaf8be2fa06786da94fa6e3b90773d6f178739 (diff) | |
download | nettle-34fbd9910a779c7fb5bb7ccc07e4ae68ae35e997.tar.gz |
ecc: prefix optimized ECC function names with underscore
There is no need to keep optimized ECC functions in public namespace
(nettle_*), move them to internal namespace (_nettle_*).
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'ecc-curve25519.c')
-rw-r--r-- | ecc-curve25519.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecc-curve25519.c b/ecc-curve25519.c index 73d72765..65843a57 100644 --- a/ecc-curve25519.c +++ b/ecc-curve25519.c @@ -48,7 +48,7 @@ #if HAVE_NATIVE_ecc_25519_modp -#define ecc_25519_modp nettle_ecc_25519_modp +#define ecc_25519_modp _nettle_ecc_25519_modp void ecc_25519_modp (const struct ecc_modulo *m, mp_limb_t *rp); #else |