Skip to content

Commit

Permalink
Remove testing of unsupported ED448 in Botan 2
Browse files Browse the repository at this point in the history
The test can be re-enabled when we support Botan 3 due to:
randombit/botan#3933

Signed-off-by: Björn Svensson <[email protected]>
  • Loading branch information
bjosv committed Nov 29, 2024
1 parent 4f42888 commit 69cea51
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/test/SymmetricAlgorithmTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1427,8 +1427,10 @@ void SymmetricAlgorithmTests::aesWrapUnwrapED(CK_MECHANISM_TYPE mechanismType, C
CK_BBOOL bTrue = CK_TRUE;

std::map<std::string, EDCurveParam > curves {
{ "ED25519", {0x06, 0x03, 0x2b, 0x65, 0x70} },
{ "ED448", {0x06, 0x03, 0x2b, 0x65, 0x71} }
{ "ED25519", {0x06, 0x03, 0x2b, 0x65, 0x70} }
#ifndef WITH_BOTAN
, { "ED448", {0x06, 0x03, 0x2b, 0x65, 0x71} }
#endif
};

for(auto &curve : curves) {
Expand Down

0 comments on commit 69cea51

Please sign in to comment.