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/cli/speed.cpp | |
parent | db1d2a16973cf71e19a240d305309aefe15effed (diff) |
Change XMSS OIDs and feature macro name
Since draft6 and final RFC are not compatible ...
Diffstat (limited to 'src/cli/speed.cpp')
-rw-r--r-- | src/cli/speed.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/speed.cpp b/src/cli/speed.cpp index 0b68d579f..a481ec16a 100644 --- a/src/cli/speed.cpp +++ b/src/cli/speed.cpp @@ -633,7 +633,7 @@ class Speed final : public Command bench_mceliece(provider, msec); } #endif -#if defined(BOTAN_HAS_XMSS) +#if defined(BOTAN_HAS_XMSS_RFC8391) else if(algo == "XMSS") { bench_xmss(provider, msec); @@ -2087,7 +2087,7 @@ class Speed final : public Command } #endif -#if defined(BOTAN_HAS_XMSS) +#if defined(BOTAN_HAS_XMSS_RFC8391) void bench_xmss(const std::string& provider, std::chrono::milliseconds msec) { |