aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_xmss.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-06-25 10:21:08 -0400
committerJack Lloyd <[email protected]>2019-06-25 10:21:08 -0400
commitf39254992578ac5e7e6f75234a185a6200a840b9 (patch)
treec2b1118453b20d9e9c410cbb5d46fb40c22ab06a /src/tests/test_xmss.cpp
parentdb1d2a16973cf71e19a240d305309aefe15effed (diff)
parent54425979e7297357e28108f0830910f497384ac7 (diff)
Merge GH #2003 Change XMSS OID and feature macro
Diffstat (limited to 'src/tests/test_xmss.cpp')
-rw-r--r--src/tests/test_xmss.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_xmss.cpp b/src/tests/test_xmss.cpp
index 84d25aee4..ee801e6fc 100644
--- a/src/tests/test_xmss.cpp
+++ b/src/tests/test_xmss.cpp
@@ -7,7 +7,7 @@
#include "tests.h"
-#if defined(BOTAN_HAS_XMSS)
+#if defined(BOTAN_HAS_XMSS_RFC8391)
#include <botan/xmss.h>
#include "test_pubkey.h"
#endif
@@ -16,7 +16,7 @@ namespace Botan_Tests {
namespace {
-#if defined(BOTAN_HAS_XMSS)
+#if defined(BOTAN_HAS_XMSS_RFC8391)
class XMSS_Signature_Tests final : public PK_Signature_Generation_Test
{