mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-18 16:14:34 +00:00
1b11ea7c58
Hash-Based Signatures) The code is not compiled in by default (see WITH_XMSS in Makefile.inc) Joint work with stefan-lukas_gazdag at genua.eu See https://tools.ietf.org/html/draft-irtf-cfrg-xmss-hash-based-signatures-12 ok djm@ OpenBSD-Commit-ID: ef3eccb96762a5d6f135d7daeef608df7776a7ac
15 lines
298 B
C
15 lines
298 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);
|
|
void hexdump(const unsigned char *a, size_t len);
|
|
#endif |