diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libuecc/ecc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libuecc/ecc.h b/include/libuecc/ecc.h index b8f8bc5..42431ec 100644 --- a/include/libuecc/ecc.h +++ b/include/libuecc/ecc.h @@ -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); |