fe.h 980 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef FE_H
  2. #define FE_H
  3. #include "fixedint.h"
  4. /*
  5. fe means field element.
  6. Here the field is \Z/(2^255-19).
  7. An element t, entries t[0]...t[9], represents the integer
  8. t[0]+2^26 t[1]+2^51 t[2]+2^77 t[3]+2^102 t[4]+...+2^230 t[9].
  9. Bounds on each t[i] vary depending on context.
  10. */
  11. typedef int32_t fe[10];
  12. void fe_0(fe h);
  13. void fe_1(fe h);
  14. void fe_frombytes(fe h, const unsigned char *s);
  15. void fe_tobytes(unsigned char *s, const fe h);
  16. void fe_copy(fe h, const fe f);
  17. int fe_isnegative(const fe f);
  18. int fe_isnonzero(const fe f);
  19. void fe_cmov(fe f, const fe g, unsigned int b);
  20. void fe_cswap(fe f, fe g, unsigned int b);
  21. void fe_neg(fe h, const fe f);
  22. void fe_add(fe h, const fe f, const fe g);
  23. void fe_invert(fe out, const fe z);
  24. void fe_sq(fe h, const fe f);
  25. void fe_sq2(fe h, const fe f);
  26. void fe_mul(fe h, const fe f, const fe g);
  27. void fe_mul121666(fe h, fe f);
  28. void fe_pow22523(fe out, const fe z);
  29. void fe_sub(fe h, const fe f, const fe g);
  30. #endif