ed25519/src/sc.h

12 lines
266 B
C
Raw Normal View History

2013-01-12 00:54:40 +01:00
#ifndef SC_H
#define SC_H
/*
The set of scalars is \Z/l
where l = 2^252 + 27742317777372353535851937790883648493.
*/
2013-01-21 22:28:34 +01: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-12 00:54:40 +01:00
2013-01-21 22:28:34 +01:00
#endif