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.

13 lines
259 B

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