tinc: update to 1.1pre11
[tomato.git] / release / src / router / tinc / src / ed25519 / sc.h
blob8fa727ef10d5ca2fce31552c1430ae179e99fd06
1 #ifndef SC_H
2 #define SC_H
4 /*
5 The set of scalars is \Z/l
6 where l = 2^252 + 27742317777372353535851937790883648493.
7 */
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);
12 #endif