diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-10-26 18:12:15 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-10-26 18:24:59 +0200 |
commit | 7003e7c1565c1d391d6b907dc8667083092b9543 (patch) | |
tree | 6218bba2ad3cdaa4a8c0be027587db736a2cc946 /src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h | |
parent | Merge pull request #448 (diff) | |
parent | Merge branch 'master' of https://github.com/fluffypony/bitmonero (diff) | |
download | monero-7003e7c1565c1d391d6b907dc8667083092b9543.tar.xz |
Merge pull request #450
cbdf197 renamed folder (Riccardo Spagni)
bb0c161 renamed folder (Riccardo Spagni)
Diffstat (limited to 'src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h')
-rw-r--r-- | src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h b/src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h new file mode 100644 index 000000000..d32ed2e8c --- /dev/null +++ b/src/crypto/crypto_ops_builder/ref10CommentedCombined/sc.h @@ -0,0 +1,15 @@ +#ifndef SC_H +#define SC_H + +/* +The set of scalars is \Z/l +where l = 2^252 + 27742317777372353535851937790883648493. +*/ + +#define sc_reduce crypto_sign_ed25519_ref10_sc_reduce +#define sc_muladd crypto_sign_ed25519_ref10_sc_muladd + +extern void sc_reduce(unsigned char *); +extern void sc_muladd(unsigned char *,const unsigned char *,const unsigned char *,const unsigned char *); + +#endif |