fe25519.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* $OpenBSD: fe25519.h,v 1.3 2013/12/09 11:03:45 markus Exp $ */
  2. /*
  3. * Public Domain, Authors: Daniel J. Bernstein, Niels Duif, Tanja Lange,
  4. * Peter Schwabe, Bo-Yin Yang.
  5. * Copied from supercop-20130419/crypto_sign/ed25519/ref/fe25519.h
  6. */
  7. #ifndef FE25519_H
  8. #define FE25519_H
  9. #include "crypto_api.h"
  10. #define fe25519 crypto_sign_ed25519_ref_fe25519
  11. #define fe25519_freeze crypto_sign_ed25519_ref_fe25519_freeze
  12. #define fe25519_unpack crypto_sign_ed25519_ref_fe25519_unpack
  13. #define fe25519_pack crypto_sign_ed25519_ref_fe25519_pack
  14. #define fe25519_iszero crypto_sign_ed25519_ref_fe25519_iszero
  15. #define fe25519_iseq_vartime crypto_sign_ed25519_ref_fe25519_iseq_vartime
  16. #define fe25519_cmov crypto_sign_ed25519_ref_fe25519_cmov
  17. #define fe25519_setone crypto_sign_ed25519_ref_fe25519_setone
  18. #define fe25519_setzero crypto_sign_ed25519_ref_fe25519_setzero
  19. #define fe25519_neg crypto_sign_ed25519_ref_fe25519_neg
  20. #define fe25519_getparity crypto_sign_ed25519_ref_fe25519_getparity
  21. #define fe25519_add crypto_sign_ed25519_ref_fe25519_add
  22. #define fe25519_sub crypto_sign_ed25519_ref_fe25519_sub
  23. #define fe25519_mul crypto_sign_ed25519_ref_fe25519_mul
  24. #define fe25519_square crypto_sign_ed25519_ref_fe25519_square
  25. #define fe25519_invert crypto_sign_ed25519_ref_fe25519_invert
  26. #define fe25519_pow2523 crypto_sign_ed25519_ref_fe25519_pow2523
  27. typedef struct
  28. {
  29. crypto_uint32 v[32];
  30. }
  31. fe25519;
  32. void fe25519_freeze(fe25519 *r);
  33. void fe25519_unpack(fe25519 *r, const unsigned char x[32]);
  34. void fe25519_pack(unsigned char r[32], const fe25519 *x);
  35. int fe25519_iszero(const fe25519 *x);
  36. int fe25519_iseq_vartime(const fe25519 *x, const fe25519 *y);
  37. void fe25519_cmov(fe25519 *r, const fe25519 *x, unsigned char b);
  38. void fe25519_setone(fe25519 *r);
  39. void fe25519_setzero(fe25519 *r);
  40. void fe25519_neg(fe25519 *r, const fe25519 *x);
  41. unsigned char fe25519_getparity(const fe25519 *x);
  42. void fe25519_add(fe25519 *r, const fe25519 *x, const fe25519 *y);
  43. void fe25519_sub(fe25519 *r, const fe25519 *x, const fe25519 *y);
  44. void fe25519_mul(fe25519 *r, const fe25519 *x, const fe25519 *y);
  45. void fe25519_square(fe25519 *r, const fe25519 *x);
  46. void fe25519_invert(fe25519 *r, const fe25519 *x);
  47. void fe25519_pow2523(fe25519 *r, const fe25519 *x);
  48. #endif