summaryrefslogtreecommitdiffstats
path: root/xmss_hash.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-27 04:45:17 +0100
committerDarren Tucker <dtucker@dtucker.net>2018-02-28 06:52:12 +0100
commita10d8552d0d2438da4ed539275abcbf557d1e7a8 (patch)
tree558851a676d0fe83749966034794b7f1269dbf0e /xmss_hash.h
parentCheck dlopen has RTLD_NOW before enabling pkcs11. (diff)
downloadopenssh-a10d8552d0d2438da4ed539275abcbf557d1e7a8.tar.xz
openssh-a10d8552d0d2438da4ed539275abcbf557d1e7a8.zip
Conditionally compile XMSS code.
The XMSS code is currently experimental and, unlike the rest of OpenSSH cannot currently be compiled with a c89 compiler.
Diffstat (limited to 'xmss_hash.h')
-rw-r--r--xmss_hash.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_hash.h b/xmss_hash.h
index 2fed73009..e01960cdb 100644
--- a/xmss_hash.h
+++ b/xmss_hash.h
@@ -1,3 +1,4 @@
+#ifdef WITH_XMSS
/*
hash.h version 20160722
Andreas Hülsing
@@ -17,3 +18,4 @@ int hash_h(unsigned char *out, const unsigned char *in, const unsigned char *pub
int hash_f(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n);
#endif
+#endif /* WITH_XMSS */