diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2020-01-07 01:16:45 +0300 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2020-01-10 20:18:08 +0100 |
commit | 0a5e2524909b5f7be602786da26685ab492bb7d6 (patch) | |
tree | f945c05b3e44db52f3fbf0221f4f36d588730e4d /x86_64/ecc-secp384r1-modp.asm | |
parent | 34fbd9910a779c7fb5bb7ccc07e4ae68ae35e997 (diff) | |
download | nettle-0a5e2524909b5f7be602786da26685ab492bb7d6.tar.gz |
ecc: rename functions to contain curve names instead of bits
Rename curve functions to use curve names instead of just bits.
Otherwise function names can easily become confusing after adding other
curves.
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'x86_64/ecc-secp384r1-modp.asm')
-rw-r--r-- | x86_64/ecc-secp384r1-modp.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x86_64/ecc-secp384r1-modp.asm b/x86_64/ecc-secp384r1-modp.asm index 13f469b1..9bfa0618 100644 --- a/x86_64/ecc-secp384r1-modp.asm +++ b/x86_64/ecc-secp384r1-modp.asm @@ -51,7 +51,7 @@ define(<C0>, H5) C Overlap define(<TMP>, RP) C Overlap -PROLOGUE(_nettle_ecc_384_modp) +PROLOGUE(_nettle_ecc_secp384r1_modp) W64_ENTRY(2, 0) push %rbx @@ -231,4 +231,4 @@ PROLOGUE(_nettle_ecc_384_modp) W64_EXIT(2, 0) ret -EPILOGUE(_nettle_ecc_384_modp) +EPILOGUE(_nettle_ecc_secp384r1_modp) |