diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-02-27 14:45:17 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-02-28 16:52:12 +1100 |
commit | a10d8552d0d2438da4ed539275abcbf557d1e7a8 (patch) | |
tree | 558851a676d0fe83749966034794b7f1269dbf0e /xmss_commons.h | |
parent | 146c3bd28c8dbee9c4b06465d9c9facab96b1e9b (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.h')
-rw-r--r-- | xmss_commons.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_commons.h b/xmss_commons.h index d9a920c02..a79ba11e9 100644 --- a/xmss_commons.h +++ b/xmss_commons.h | |||
@@ -1,3 +1,4 @@ | |||
1 | #ifdef WITH_XMSS | ||
1 | /* | 2 | /* |
2 | xmss_commons.h 20160722 | 3 | xmss_commons.h 20160722 |
3 | Andreas Hülsing | 4 | Andreas Hülsing |
@@ -17,3 +18,4 @@ void to_byte(unsigned char *output, unsigned long long in, uint32_t bytes); | |||
17 | void hexdump(const unsigned char *a, size_t len); | 18 | void hexdump(const unsigned char *a, size_t len); |
18 | #endif | 19 | #endif |
19 | #endif | 20 | #endif |
21 | #endif /* WITH_XMSS */ | ||