mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-18 16:14:34 +00:00
534b2680a1
Nothing currently uses them but they cause conflicts on at least FreeBSD, possibly others. ok djm@
18 lines
312 B
C
18 lines
312 B
C
/*
|
|
xmss_commons.h 20160722
|
|
Andreas Hülsing
|
|
Joost Rijneveld
|
|
Public domain.
|
|
*/
|
|
#ifndef XMSS_COMMONS_H
|
|
#define XMSS_COMMONS_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes);
|
|
#if 0
|
|
void hexdump(const unsigned char *a, size_t len);
|
|
#endif
|
|
#endif
|