diff options
author | Jack Lloyd <[email protected]> | 2019-06-23 07:36:47 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-06-23 07:39:54 -0400 |
commit | 54425979e7297357e28108f0830910f497384ac7 (patch) | |
tree | c2b1118453b20d9e9c410cbb5d46fb40c22ab06a /src/tests | |
parent | db1d2a16973cf71e19a240d305309aefe15effed (diff) |
Change XMSS OIDs and feature macro name
Since draft6 and final RFC are not compatible ...
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_xmss.cpp | 4 |
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 { |