1 /* $NetBSD: xmss_commons.h,v 1.2 2018/04/06 18:59:00 christos Exp $ */ 2 /* $OpenBSD: xmss_commons.h,v 1.3 2018/02/26 03:56:44 dtucker Exp $ */ 3 /* 4 xmss_commons.h 20160722 5 Andreas Hülsing 6 Joost Rijneveld 7 Public domain. 8 */ 9 #ifndef XMSS_COMMONS_H 10 #define XMSS_COMMONS_H 11 12 #include <stdlib.h> 13 #include <stdint.h> 14 15 void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes); 16 void hexdump(const unsigned char *a, size_t len); 17 #endif 18