diff options
author | Jack Lloyd <[email protected]> | 2021-04-07 11:43:58 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2021-04-07 11:44:07 -0400 |
commit | 69c0bd859c19a33e44e6874f3ceae343332b28a9 (patch) | |
tree | f73e507ee637f9d447a900276b6cb2ac03a0db3b /src/tests | |
parent | 833aa251c7ebf0011699ca8d3d854ed118a17af4 (diff) |
Move Argon2 formatting to argon2fmt module
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_passhash.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/test_passhash.cpp b/src/tests/test_passhash.cpp index 849163322..dc1d275a4 100644 --- a/src/tests/test_passhash.cpp +++ b/src/tests/test_passhash.cpp @@ -14,8 +14,8 @@ #include <botan/passhash9.h> #endif -#if defined(BOTAN_HAS_ARGON2) - #include <botan/argon2.h> +#if defined(BOTAN_HAS_ARGON2_FMT) + #include <botan/argon2fmt.h> #include "test_rng.h" #endif @@ -81,7 +81,7 @@ BOTAN_REGISTER_TEST("pbkdf", "bcrypt", Bcrypt_Tests); #endif -#if defined(BOTAN_HAS_ARGON2) +#if defined(BOTAN_HAS_ARGON2_FMT) class Argon2_Tests final : public Text_Based_Test { public: |