You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 rivejä
267 B

  1. /*
  2. xmss_commons.h 20160210
  3. Andreas Hülsing
  4. Joost Rijneveld
  5. Public domain.
  6. */
  7. #ifndef XMSS_COMMONS_H
  8. #define XMSS_COMMONS_H
  9. #include <stdlib.h>
  10. void to_byte(unsigned char *output, unsigned int in, int bytes);
  11. void hexdump(const unsigned char *a, size_t len);
  12. #endif