xref: /dflybsd-src/crypto/openssh/xmss_commons.h (revision ba1276acd1c8c22d225b1bcf370a14c878644f44)
1*ba1276acSMatthew Dillon #ifdef WITH_XMSS
2*ba1276acSMatthew Dillon /* $OpenBSD: xmss_commons.h,v 1.3 2018/02/26 03:56:44 dtucker Exp $ */
3*ba1276acSMatthew Dillon /*
4*ba1276acSMatthew Dillon xmss_commons.h 20160722
5*ba1276acSMatthew Dillon Andreas Hülsing
6*ba1276acSMatthew Dillon Joost Rijneveld
7*ba1276acSMatthew Dillon Public domain.
8*ba1276acSMatthew Dillon */
9*ba1276acSMatthew Dillon #ifndef XMSS_COMMONS_H
10*ba1276acSMatthew Dillon #define XMSS_COMMONS_H
11*ba1276acSMatthew Dillon 
12*ba1276acSMatthew Dillon #include <stdlib.h>
13*ba1276acSMatthew Dillon #ifdef HAVE_STDINT_H
14*ba1276acSMatthew Dillon #include <stdint.h>
15*ba1276acSMatthew Dillon #endif
16*ba1276acSMatthew Dillon #endif
17*ba1276acSMatthew Dillon void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
18*ba1276acSMatthew Dillon #if 0
19*ba1276acSMatthew Dillon void hexdump(const unsigned char *a, size_t len);
20*ba1276acSMatthew Dillon #endif
21*ba1276acSMatthew Dillon #endif /* WITH_XMSS */
22