From a10d8552d0d2438da4ed539275abcbf557d1e7a8 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Tue, 27 Feb 2018 14:45:17 +1100 Subject: Conditionally compile XMSS code. The XMSS code is currently experimental and, unlike the rest of OpenSSH cannot currently be compiled with a c89 compiler. --- xmss_wots.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'xmss_wots.h') diff --git a/xmss_wots.h b/xmss_wots.h index 8bcb44e0..6b3177c2 100644 --- a/xmss_wots.h +++ b/xmss_wots.h @@ -1,3 +1,4 @@ +#ifdef WITH_XMSS /* wots.h version 20160722 Andreas Hülsing @@ -59,3 +60,4 @@ int wots_sign(unsigned char *sig, const unsigned char *msg, const unsigned char int wots_pkFromSig(unsigned char *pk, const unsigned char *sig, const unsigned char *msg, const wots_params *params, const unsigned char *pub_seed, uint32_t addr[8]); #endif +#endif /* WITH_XMSS */ -- cgit v1.2.1