Skip to content

Commit

Permalink
Missing prototype.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed May 8, 2024
1 parent cc73c65 commit b0a4baa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions include/relic_fpx.h
Original file line number Diff line number Diff line change
Expand Up @@ -2869,6 +2869,16 @@ void fp8_mul_art(fp8_t c, const fp8_t a);
*/
void fp8_mul_frb(fp8_t c, const fp8_t a, int i, int j);

/**
* Multiplies an octic extension field element by a digit.
* Computes c = a * b.
*
* @param[out] c - the result.
* @param[in] a - the octic extension field element.
* @param[in] b - the digit to multiply.
*/
void fp8_mul_dig(fp8_t c, const fp8_t a, dig_t b);

/**
* Multiples a dense octic extension field element by a sparse element.
*
Expand Down

0 comments on commit b0a4baa

Please sign in to comment.