]> git.meshlink.io Git - meshlink/blob - src/ed25519/sc.h
8fa727ef10d5ca2fce31552c1430ae179e99fd06
[meshlink] / 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