mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-18 16:14:34 +00:00
afd830847a
OpenBSD-Commit-ID: 52f247d4eafe840c7c14c8befa71a760a8eeb063
22 lines
386 B
C
22 lines
386 B
C
#ifdef WITH_XMSS
|
|
/*
|
|
xmss_commons.h 20160722
|
|
Andreas Hülsing
|
|
Joost Rijneveld
|
|
Public domain.
|
|
*/
|
|
#ifndef XMSS_COMMONS_H
|
|
#define XMSS_COMMONS_H
|
|
|
|
#include <stdlib.h>
|
|
#ifdef HAVE_STDINT_H
|
|
#include <stdint.h>
|
|
#endif
|
|
#endif
|
|
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
|
|
#endif /* WITH_XMSS */
|