summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448/arch_64/f_impl64.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec/curve448/arch_64/f_impl64.c')
-rw-r--r--crypto/ec/curve448/arch_64/f_impl64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ec/curve448/arch_64/f_impl64.c b/crypto/ec/curve448/arch_64/f_impl64.c
index 10a9b065e5..419f8a8e65 100644
--- a/crypto/ec/curve448/arch_64/f_impl64.c
+++ b/crypto/ec/curve448/arch_64/f_impl64.c
@@ -21,7 +21,7 @@ NON_EMPTY_TRANSLATION_UNIT
# include "../field.h"
-void gf_mul(gf_s * RESTRICT cs, const gf as, const gf bs)
+void ossl_gf_mul(gf_s * RESTRICT cs, const gf as, const gf bs)
{
const uint64_t *a = as->limb, *b = bs->limb;
uint64_t *c = cs->limb;
@@ -73,7 +73,7 @@ void gf_mul(gf_s * RESTRICT cs, const gf as, const gf bs)
c[1] += ((uint64_t)(accum1));
}
-void gf_mulw_unsigned(gf_s * RESTRICT cs, const gf as, uint32_t b)
+void ossl_gf_mulw_unsigned(gf_s * RESTRICT cs, const gf as, uint32_t b)
{
const uint64_t *a = as->limb;
uint64_t *c = cs->limb;
@@ -99,7 +99,7 @@ void gf_mulw_unsigned(gf_s * RESTRICT cs, const gf as, uint32_t b)
c[1] += accum4 >> 56;
}
-void gf_sqr(gf_s * RESTRICT cs, const gf as)
+void ossl_gf_sqr(gf_s * RESTRICT cs, const gf as)
{
const uint64_t *a = as->limb;
uint64_t *c = cs->limb;