aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_ed25519.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_ed25519.cpp')
-rw-r--r--src/tests/test_ed25519.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/tests/test_ed25519.cpp b/src/tests/test_ed25519.cpp
index df9d7928a..e052e9279 100644
--- a/src/tests/test_ed25519.cpp
+++ b/src/tests/test_ed25519.cpp
@@ -26,7 +26,7 @@ class Ed25519_Signature_Tests final : public PK_Signature_Generation_Test
Ed25519_Signature_Tests() : PK_Signature_Generation_Test(
"Ed25519",
"pubkey/ed25519.vec",
- "Privkey,Pubkey,Hash,Msg,Signature") {}
+ "Privkey,Pubkey,Msg,Signature") {}
std::unique_ptr<Botan::Private_Key> load_private_key(const VarMap& vars) override
{
@@ -42,11 +42,6 @@ class Ed25519_Signature_Tests final : public PK_Signature_Generation_Test
return std::unique_ptr<Botan::Private_Key>(key.release());
}
-
- std::string default_padding(const VarMap& vars) const override
- {
- return get_opt_str(vars, "Hash", "Pure");
- }
};
class Ed25519_Curdle_Format_Tests final : public Test