mirror of
https://github.com/neocturne/libuecc.git
synced 2025-07-06 23:19:07 +02:00
Add GF reciprocal function
This commit is contained in:
parent
bccf64ec1b
commit
80db8a2f72
2 changed files with 52 additions and 0 deletions
|
@ -61,6 +61,7 @@ void ecc_25519_gf_add(ecc_int_256 *out, const ecc_int_256 *in1, const ecc_int_25
|
|||
void ecc_25519_gf_sub(ecc_int_256 *out, const ecc_int_256 *in1, const ecc_int_256 *in2);
|
||||
void ecc_25519_gf_reduce(ecc_int_256 *out, const ecc_int_256 *in);
|
||||
void ecc_25519_gf_mult(ecc_int_256 *out, const ecc_int_256 *in1, const ecc_int_256 *in2);
|
||||
void ecc_25519_gf_recip(ecc_int_256 *out, const ecc_int_256 *in);
|
||||
|
||||
void ecc_25519_gf_sanitize_secret(ecc_int_256 *out, const ecc_int_256 *in);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue