summaryrefslogtreecommitdiffstats
path: root/sshkey-xmss.c
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 /sshkey-xmss.c
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 'sshkey-xmss.c')
-rw-r--r--sshkey-xmss.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sshkey-xmss.c b/sshkey-xmss.c
index f146098b3..e2b7c49ce 100644
--- a/sshkey-xmss.c
+++ b/sshkey-xmss.c
@@ -1,3 +1,4 @@
+#ifdef WITH_XMSS
/* $OpenBSD: sshkey-xmss.c,v 1.1 2018/02/23 15:58:38 markus Exp $ */
/*
* Copyright (c) 2017 Markus Friedl. All rights reserved.
@@ -1051,3 +1052,4 @@ sshkey_xmss_enable_maxsign(struct sshkey *k, u_int32_t maxsign)
state->maxidx = state->idx + maxsign;
return 0;
}
+#endif /* WITH_XMSS */