sc.h 267 B

12345678910111213
  1. #ifndef SC_H
  2. #define SC_H
  3. /*
  4. The set of scalars is \Z/l
  5. where l = 2^252 + 27742317777372353535851937790883648493.
  6. */
  7. void sc_reduce(unsigned char *s);
  8. void sc_muladd(unsigned char *s, const unsigned char *a, const unsigned char *b, const unsigned char *c);
  9. #endif