summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448/arch_32/f_impl32.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec/curve448/arch_32/f_impl32.c')
-rw-r--r--crypto/ec/curve448/arch_32/f_impl32.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/ec/curve448/arch_32/f_impl32.c b/crypto/ec/curve448/arch_32/f_impl32.c
index 14f7b786f4..8a7a1fdbde 100644
--- a/crypto/ec/curve448/arch_32/f_impl32.c
+++ b/crypto/ec/curve448/arch_32/f_impl32.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 uint32_t *a = as->limb, *b = bs->limb;
uint32_t *c = cs->limb;
@@ -70,7 +70,7 @@ void gf_mul(gf_s * RESTRICT cs, const gf as, const gf bs)
c[1] += ((uint32_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 uint32_t *a = as->limb;
uint32_t *c = cs->limb;
@@ -98,8 +98,8 @@ void gf_mulw_unsigned(gf_s * RESTRICT cs, const gf as, uint32_t b)
c[1] += (uint32_t)(accum8 >> 28);
}
-void gf_sqr(gf_s * RESTRICT cs, const gf as)
+void ossl_gf_sqr(gf_s * RESTRICT cs, const gf as)
{
- gf_mul(cs, as, as); /* Performs better with a dedicated square */
+ ossl_gf_mul(cs, as, as); /* Performs better with a dedicated square */
}
#endif