summaryrefslogtreecommitdiff
path: root/xmss_commons.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-27 14:45:17 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-28 16:52:12 +1100
commita10d8552d0d2438da4ed539275abcbf557d1e7a8 (patch)
tree558851a676d0fe83749966034794b7f1269dbf0e /xmss_commons.c
parent146c3bd28c8dbee9c4b06465d9c9facab96b1e9b (diff)
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_commons.c')
-rw-r--r--xmss_commons.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_commons.c b/xmss_commons.c
index ff3ddb4ae..a25fc673c 100644
--- a/xmss_commons.c
+++ b/xmss_commons.c
@@ -1,3 +1,4 @@
1#ifdef WITH_XMSS
1/* 2/*
2xmss_commons.c 20160722 3xmss_commons.c 20160722
3Andreas Hülsing 4Andreas Hülsing
@@ -31,3 +32,4 @@ void hexdump(const unsigned char *a, size_t len)
31 printf("%02x", a[i]); 32 printf("%02x", a[i]);
32} 33}
33#endif 34#endif
35#endif /* WITH_XMSS */