aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 18:17:23 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 18:17:23 +0100
commit77ec37eccf2bc4103f9fc784039b7d7b69d5cd18 (patch)
tree8bb5322723865aaad9419654a97663b164d6c822
parentAdd documentation (diff)
downloadlibblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.gz
libblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.bz2
libblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.xz
m doc fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--libblake.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libblake.h b/libblake.h
index db733e5..9f06646 100644
--- a/libblake.h
+++ b/libblake.h
@@ -333,7 +333,7 @@ libblake_blake256_digest(struct libblake_blake256_state *state, void *data, size
* Initialise a state for hashing with BLAKE384
*
* @param state The state to initialise
- * @param salt 16-byte salt to use, or `NULL` for an all-zeroes salt
+ * @param salt 32-byte salt to use, or `NULL` for an all-zeroes salt
*/
LIBBLAKE_PUBLIC__ void
libblake_blake384_init2(struct libblake_blake384_state *state, const uint_least8_t salt[32]);
@@ -419,7 +419,7 @@ libblake_blake384_digest(struct libblake_blake384_state *state, void *data, size
* Initialise a state for hashing with BLAKE512
*
* @param state The state to initialise
- * @param salt 16-byte salt to use, or `NULL` for an all-zeroes salt
+ * @param salt 32-byte salt to use, or `NULL` for an all-zeroes salt
*/
LIBBLAKE_PUBLIC__ void
libblake_blake512_init2(struct libblake_blake512_state *state, const uint_least8_t salt[32]);