diff options
author | Jack Lloyd <[email protected]> | 2018-09-20 13:22:21 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-09-20 13:22:21 -0400 |
commit | 7d0353793a629ace4cc27443b059b72a8c12d5dd (patch) | |
tree | 9ea06191aa0e5279992b469df0af27dc8579fb90 /src/lib/pbkdf/pwdhash.h | |
parent | 7f0d0fe571e60340cd7995c518c343c8d25e853d (diff) |
Correct some maintiner mode warnings
Diffstat (limited to 'src/lib/pbkdf/pwdhash.h')
-rw-r--r-- | src/lib/pbkdf/pwdhash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/pbkdf/pwdhash.h b/src/lib/pbkdf/pwdhash.h index d4a205340..ba64a73fd 100644 --- a/src/lib/pbkdf/pwdhash.h +++ b/src/lib/pbkdf/pwdhash.h @@ -115,13 +115,13 @@ class BOTAN_PUBLIC_API(2,8) PasswordHashFamily * @param output_length how long the output length will be * @param msec the desired execution time in milliseconds * - * @param max_memory_usage some password hash functions can use a tunable + * @param max_memory_usage_mb some password hash functions can use a tunable * amount of memory, in this case max_memory_usage limits the amount of RAM * the returned parameters will require, in mebibytes (2**20 bytes). It may * require some small amount above the request. Set to zero to place no * limit at all. */ - virtual std::unique_ptr<PasswordHash> tune(size_t output_len, + virtual std::unique_ptr<PasswordHash> tune(size_t output_length, std::chrono::milliseconds msec, size_t max_memory_usage_mb = 0) const = 0; |