summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448/field.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec/curve448/field.h')
-rw-r--r--crypto/ec/curve448/field.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/crypto/ec/curve448/field.h b/crypto/ec/curve448/field.h
index 0350322553..73a6c73743 100644
--- a/crypto/ec/curve448/field.h
+++ b/crypto/ec/curve448/field.h
@@ -54,9 +54,9 @@ static INLINE_UNUSED void gf_weak_reduce(gf inout);
void gf_strong_reduce(gf inout);
void gf_add(gf out, const gf a, const gf b);
void gf_sub(gf out, const gf a, const gf b);
-void gf_mul(gf_s * RESTRICT out, const gf a, const gf b);
-void gf_mulw_unsigned(gf_s * RESTRICT out, const gf a, uint32_t b);
-void gf_sqr(gf_s * RESTRICT out, const gf a);
+void ossl_gf_mul(gf_s * RESTRICT out, const gf a, const gf b);
+void ossl_gf_mulw_unsigned(gf_s * RESTRICT out, const gf a, uint32_t b);
+void ossl_gf_sqr(gf_s * RESTRICT out, const gf a);
mask_t gf_isr(gf a, const gf x); /** a^2 x = 1, QNR, or 0 if x=0. Return true if successful */
mask_t gf_eq(const gf x, const gf y);
mask_t gf_lobit(const gf x);
@@ -85,16 +85,16 @@ static ossl_inline void gf_sqrn(gf_s * RESTRICT y, const gf x, int n)
assert(n > 0);
if (n & 1) {
- gf_sqr(y, x);
+ ossl_gf_sqr(y, x);
n--;
} else {
- gf_sqr(tmp, x);
- gf_sqr(y, tmp);
+ ossl_gf_sqr(tmp, x);
+ ossl_gf_sqr(y, tmp);
n -= 2;
}
for (; n; n -= 2) {
- gf_sqr(tmp, y);
- gf_sqr(y, tmp);
+ ossl_gf_sqr(tmp, y);
+ ossl_gf_sqr(y, tmp);
}
}
@@ -122,9 +122,9 @@ static ossl_inline void gf_subx_nr(gf c, const gf a, const gf b, int amt)
static ossl_inline void gf_mulw(gf c, const gf a, int32_t w)
{
if (w > 0) {
- gf_mulw_unsigned(c, a, w);
+ ossl_gf_mulw_unsigned(c, a, w);
} else {
- gf_mulw_unsigned(c, a, -w);
+ ossl_gf_mulw_unsigned(c, a, -w);
gf_sub(c, ZERO, c);
}
}