Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed Apr 20, 2024
1 parent 76ac960 commit 5e7f6cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/low/x64-asm-6l/relic_bn_mul_low.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ void bn_muln_low(dig_t *c, const dig_t *a, const dig_t *b, size_t size) {
mpn_mul_n(c, a, b, size);
}

void bn_muld_low(dig_t *c, const dig_t *a, size_t sizea, const dig_t *b, size_t sizeb,
int low, int high) {
void bn_muld_low(dig_t *c, const dig_t *a, size_t sa, const dig_t *b, size_t sb,
uint_t low, uint_t high) {
(void)low;
(void)high;
mpn_mul(c, a, sizea, b, sizeb);
mpn_mul(c, a, sa, b, sb);
}

0 comments on commit 5e7f6cb

Please sign in to comment.