2015-08-11 11:23:30 +01:00
|
|
|
/*
|
2016-02-10 14:57:16 +00:00
|
|
|
xmss_commons.h version 20151120
|
2015-08-11 11:23:30 +01:00
|
|
|
Andreas Hülsing
|
|
|
|
Public domain.
|
|
|
|
*/
|
2015-08-11 11:08:27 +01:00
|
|
|
#ifndef XMSS_COMMONS_H
|
|
|
|
#define XMSS_COMMONS_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-08-12 14:30:01 +01:00
|
|
|
void to_byte(unsigned char *output, unsigned int in, int bytes);
|
2015-08-11 11:08:27 +01:00
|
|
|
void hexdump(const unsigned char *a, size_t len);
|
|
|
|
#endif
|