xmss-KAT-generator/xmss_commons.h

15 lines
298 B
C
Raw Normal View History

/*
2016-07-11 10:15:16 +01:00
xmss_commons.h 20160217
Andreas Hülsing
Joost Rijneveld
Public domain.
*/
2015-08-11 11:08:27 +01:00
#ifndef XMSS_COMMONS_H
#define XMSS_COMMONS_H
#include <stdlib.h>
2016-07-11 10:15:16 +01:00
#include <stdint.h>
2015-08-11 11:08:27 +01:00
2016-07-11 10:15:16 +01:00
void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
2015-08-11 11:08:27 +01:00
void hexdump(const unsigned char *a, size_t len);
#endif