sc.h 366 B

123456789101112131415
  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. #define sc_reduce CRYPTO_NAMESPACE(sc_reduce)
  8. #define sc_muladd CRYPTO_NAMESPACE(sc_muladd)
  9. extern void sc_reduce(unsigned char *);
  10. extern void sc_muladd(unsigned char *,const unsigned char *,const unsigned char *,const unsigned char *);
  11. #endif