diff options
author | Jack Lloyd <[email protected]> | 2019-10-25 06:23:30 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-10-25 06:24:54 -0400 |
commit | 04de89411689d2d3006e85e3161e7d6855f4f335 (patch) | |
tree | 4b05f8c1928d411a4f02e3e951f88efe4eca7b83 /src/lib/pbkdf/argon2/argon2.h | |
parent | 807518071555287f651586f37b7cf68df3358bae (diff) |
Fix various Doxygen warnings
Some due to missing comments, others due to various misparsing of the code.
Diffstat (limited to 'src/lib/pbkdf/argon2/argon2.h')
-rw-r--r-- | src/lib/pbkdf/argon2/argon2.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/pbkdf/argon2/argon2.h b/src/lib/pbkdf/argon2/argon2.h index 468a44f94..88e05de08 100644 --- a/src/lib/pbkdf/argon2/argon2.h +++ b/src/lib/pbkdf/argon2/argon2.h @@ -79,8 +79,13 @@ class BOTAN_PUBLIC_API(2,11) Argon2_Family final : public PasswordHashFamily * @param output the output will be placed here * @param output_len length of output * @param password the user password +* @param password_len the length of password * @param salt the salt * @param salt_len length of salt +* @param key an optional secret key +* @param key_len the length of key +* @param ad an optional additional input +* @param ad_len the length of ad * @param y the Argon2 variant (0 = Argon2d, 1 = Argon2i, 2 = Argon2id) * @param p the parallelization parameter * @param M the amount of memory to use in Kb @@ -102,6 +107,7 @@ std::string BOTAN_PUBLIC_API(2,11) /** * Check a previously created password hash * @param password the password to check against +* @param password_len the length of password * @param hash the stored hash to check against */ bool BOTAN_PUBLIC_API(2,11) argon2_check_pwhash(const char* password, size_t password_len, |