scalar.h 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * File: dclxvi-20130329/scalar.h
  3. * Author: Ruben Niederhagen, Peter Schwabe
  4. * Public Domain
  5. */
  6. #ifndef SCALAR_H
  7. #define SCALAR_H
  8. #include <stdio.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #ifndef NEW_PARAMETERS
  13. typedef unsigned long long scalar_t[4] ;
  14. void scalar_sub_nored(scalar_t r, scalar_t x, scalar_t y);
  15. void scalar_setrandom(scalar_t rop, const scalar_t bound);
  16. void scalar_set_lluarray(scalar_t rop, unsigned long long v[4]);
  17. int scalar_getbit(const scalar_t s, unsigned int pos);
  18. // Returns the position of the most significant set bit
  19. int scalar_scanb(const scalar_t s);
  20. int scalar_iszero_vartime(const scalar_t s);
  21. void scalar_window4(signed char r[64], const scalar_t s);
  22. int scalar_lt_vartime(const scalar_t a, const scalar_t b);
  23. void scalar_print(FILE *fh, const scalar_t t);
  24. #endif
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif