diff options
author | Jack Lloyd <[email protected]> | 2020-03-14 14:12:45 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-03-14 14:12:45 -0400 |
commit | ab7d0ff6d4ce0440f2194aca11bdbdc1cbcb0b7a (patch) | |
tree | f10f2cefce8565a0f69509770b34cb75406d2034 | |
parent | d60832d4c6a26338d4c30e5e1dc61ff88357e5b5 (diff) |
Revert deprecating scrypt.h until everything is worked out
Need better docs etc how to do it without using these interfaces
-rw-r--r-- | src/lib/pbkdf/argon2/argon2.h | 2 | ||||
-rw-r--r-- | src/lib/pbkdf/scrypt/scrypt.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/pbkdf/argon2/argon2.h b/src/lib/pbkdf/argon2/argon2.h index afedc9117..3a1b859f0 100644 --- a/src/lib/pbkdf/argon2/argon2.h +++ b/src/lib/pbkdf/argon2/argon2.h @@ -9,6 +9,8 @@ #include <botan/pwdhash.h> +//BOTAN_FUTURE_INTERNAL_HEADER(argon2.h) + namespace Botan { class RandomNumberGenerator; diff --git a/src/lib/pbkdf/scrypt/scrypt.h b/src/lib/pbkdf/scrypt/scrypt.h index 1af59b6a5..60cdbd046 100644 --- a/src/lib/pbkdf/scrypt/scrypt.h +++ b/src/lib/pbkdf/scrypt/scrypt.h @@ -10,7 +10,7 @@ #include <botan/pwdhash.h> -BOTAN_FUTURE_INTERNAL_HEADER(scrypt.h) +//BOTAN_FUTURE_INTERNAL_HEADER(scrypt.h) namespace Botan { |