summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec/curve448')
-rw-r--r--crypto/ec/curve448/curve448.c6
-rw-r--r--crypto/ec/curve448/point_448.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/crypto/ec/curve448/curve448.c b/crypto/ec/curve448/curve448.c
index f9cc0b9732..2422d068a0 100644
--- a/crypto/ec/curve448/curve448.c
+++ b/crypto/ec/curve448/curve448.c
@@ -221,7 +221,7 @@ ossl_curve448_point_valid(const curve448_point_t p)
}
static ossl_inline void constant_time_lookup_niels(niels_s * RESTRICT ni,
- const niels_t * table,
+ const niels_t *table,
int nelts, int idx)
{
constant_time_lookup(ni, table, sizeof(niels_s), nelts, idx);
@@ -229,7 +229,7 @@ static ossl_inline void constant_time_lookup_niels(niels_s * RESTRICT ni,
void
ossl_curve448_precomputed_scalarmul(curve448_point_t out,
- const curve448_precomputed_s * table,
+ const curve448_precomputed_s *table,
const curve448_scalar_t scalar)
{
unsigned int i, j, k;
@@ -612,7 +612,7 @@ static int recode_wnaf(struct smvt_control *control,
return n - 1;
}
-static void prepare_wnaf_table(pniels_t * output,
+static void prepare_wnaf_table(pniels_t *output,
const curve448_point_t working,
unsigned int tbits)
{
diff --git a/crypto/ec/curve448/point_448.h b/crypto/ec/curve448/point_448.h
index e67ea68044..597ded4211 100644
--- a/crypto/ec/curve448/point_448.h
+++ b/crypto/ec/curve448/point_448.h
@@ -271,7 +271,7 @@ ossl_x448_derive_public_key(uint8_t out[X448_PUBLIC_BYTES],
*/
void
ossl_curve448_precomputed_scalarmul(curve448_point_t scaled,
- const curve448_precomputed_s * base,
+ const curve448_precomputed_s *base,
const curve448_scalar_t scalar);
/*