aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pbkdf/pbkdf.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-13 11:50:17 -0400
committerJack Lloyd <[email protected]>2018-09-13 11:50:17 -0400
commit880b809330a9ebb0c41de8b1a145287ccab37e4d (patch)
tree7eff1543c2405a8bdd4f5fa134aa0fdf23cef830 /src/lib/pbkdf/pbkdf.h
parent2c75e41d1051b9e2eb73a669510e7d8a74e9f0d3 (diff)
parent6073c71c5c2f4a01e42439ccb2d7d424b6489413 (diff)
Merge GH #1670 New password hashing interface
Diffstat (limited to 'src/lib/pbkdf/pbkdf.h')
-rw-r--r--src/lib/pbkdf/pbkdf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/pbkdf/pbkdf.h b/src/lib/pbkdf/pbkdf.h
index 7d3bceffc..9692b2546 100644
--- a/src/lib/pbkdf/pbkdf.h
+++ b/src/lib/pbkdf/pbkdf.h
@@ -17,6 +17,9 @@ namespace Botan {
* Base class for PBKDF (password based key derivation function)
* implementations. Converts a password into a key using a salt
* and iterated hashing to make brute force attacks harder.
+*
+* Starting in 2.8 this functionality is also offered by PasswordHash.
+* The PBKDF interface may be removed in a future release.
*/
class BOTAN_PUBLIC_API(2,0) PBKDF
{