diff options
author | Matthias Gierlings <[email protected]> | 2019-03-13 21:51:25 +0100 |
---|---|---|
committer | Matthias Gierlings <[email protected]> | 2019-05-06 10:00:20 +0200 |
commit | b1976eb32b89e0dc88d2c9a760aefa4bafaf5cbe (patch) | |
tree | 3247e711e9d4d323cc1f0a2c04f9672fecdec6f6 /src/tests/test_xmss.cpp | |
parent | 51f4e5cb113d30deef2b604f6077af6d74fdd7fa (diff) |
Adds new test cases
- Replaces XMSS test vectors with new vectors that were
generated using Bouncy Castle's XMSS implementation.
- Adjusts the XMSS test bench to recognize the new XMSS
algorithm naming scheme.
Diffstat (limited to 'src/tests/test_xmss.cpp')
-rw-r--r-- | src/tests/test_xmss.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_xmss.cpp b/src/tests/test_xmss.cpp index 6f717b013..84d25aee4 100644 --- a/src/tests/test_xmss.cpp +++ b/src/tests/test_xmss.cpp @@ -34,7 +34,7 @@ class XMSS_Signature_Tests final : public PK_Signature_Generation_Test { const std::string params = vars.get_req_str("Params"); - if(params == "SHAKE128_10_256") + if(params == "SHAKE_10_256") { return false; } |