1#ifndef SC_H
2#define SC_H
3
4/*
5The set of scalars is \Z/l
6where l = 2^252 + 27742317777372353535851937790883648493.
7*/
8
9#define sc_reduce crypto_sign_ed25519_ref10_sc_reduce
10#define sc_muladd crypto_sign_ed25519_ref10_sc_muladd
11
12extern void sc_reduce(unsigned char *);
13extern void sc_muladd(unsigned char *,const unsigned char *,const unsigned char *,const unsigned char *);
14
15#endif
16