ed25519/src/sc.h

13 lines
267 B
C
Raw Normal View History

2013-01-11 18:54:40 -05:00
#ifndef SC_H
#define SC_H
/*
The set of scalars is \Z/l
where l = 2^252 + 27742317777372353535851937790883648493.
*/
2013-01-21 16:28:34 -05:00
void sc_reduce(unsigned char *s);
void sc_muladd(unsigned char *s, const unsigned char *a, const unsigned char *b, const unsigned char *c);
2013-01-11 18:54:40 -05:00
2015-07-19 12:01:29 -04:00
#endif