diff options
-rw-r--r-- | src/lib/math/mp/mp_core.h | 1 | ||||
-rw-r--r-- | src/lib/pbkdf/scrypt/scrypt.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/mp/mp_core.h b/src/lib/math/mp/mp_core.h index 4c08a0a23..f586285bd 100644 --- a/src/lib/math/mp/mp_core.h +++ b/src/lib/math/mp/mp_core.h @@ -663,7 +663,6 @@ bigint_ct_is_eq(const word x[], size_t x_size, * @param x_size length of x * @param y input param * @param y_size length of y -* @param ws array of at least 2*max(x_size,y_size) words */ inline int32_t bigint_sub_abs(word z[], diff --git a/src/lib/pbkdf/scrypt/scrypt.h b/src/lib/pbkdf/scrypt/scrypt.h index b5060fa47..83a3b0cca 100644 --- a/src/lib/pbkdf/scrypt/scrypt.h +++ b/src/lib/pbkdf/scrypt/scrypt.h @@ -71,6 +71,7 @@ class BOTAN_PUBLIC_API(2,8) Scrypt_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 length of password * @param salt the salt * @param salt_len length of salt * @param N the CPU/Memory cost parameter, must be power of 2 |