Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklonga authored Mar 29, 2022
1 parent fd54148 commit b8e49c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/P434/P434_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ void fpcorrection434(digit_t* a);
// 434-bit Montgomery reduction, c = a mod p
void rdc434_asm(digit_t* ma, digit_t* mc);

// Field multiplication using Montgomery arithmetic, c = a*b*R^-1 mod p434, where R=2^768
// Field multiplication using Montgomery arithmetic, c = a*b*R^-1 mod p434, where R=2^448
void fpmul434_mont(const digit_t* a, const digit_t* b, digit_t* c);
void fpmul434(const digit_t* a, const digit_t* b, digit_t* c);
void fpmul434_asm(const digit_t* a, const digit_t* b, digit_t* c);
void mul434_asm(const digit_t* a, const digit_t* b, digit_t* c);

// Field squaring using Montgomery arithmetic, c = a*b*R^-1 mod p434, where R=2^768
// Field squaring using Montgomery arithmetic, c = a*b*R^-1 mod p434, where R=2^448
void fpsqr434_mont(const digit_t* ma, digit_t* mc);

// Field inversion, a = a^-1 in GF(p434)
Expand Down

0 comments on commit b8e49c3

Please sign in to comment.