diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-12-07 20:11:54 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-12-07 20:11:54 +0100 |
commit | 80db8a2f72e64caa0b16bb995ee98aa10670cb3f (patch) | |
tree | 9582a812ef3cb960ba6ca094372f2835c9702d64 /include | |
parent | bccf64ec1b9b1b139259c03907f00d97430d43c5 (diff) | |
download | libuecc-80db8a2f72e64caa0b16bb995ee98aa10670cb3f.tar libuecc-80db8a2f72e64caa0b16bb995ee98aa10670cb3f.zip |
Add GF reciprocal function
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); |