Add newline at end of precomp_data.h and sc.h.
[tinc] / src / ed25519 / sc.h
1 #ifndef SC_H
2 #define SC_H
3
4 /*
5 The set of scalars is \Z/l
6 where l = 2^252 + 27742317777372353535851937790883648493.
7 */
8
9 void sc_reduce(unsigned char *s);
10 void sc_muladd(unsigned char *s, const unsigned char *a, const unsigned char *b, const unsigned char *c);
11
12 #endif