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