diff options
author | Mattias Andrée <maandree@kth.se> | 2022-02-19 18:17:23 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-02-19 18:17:23 +0100 |
commit | 77ec37eccf2bc4103f9fc784039b7d7b69d5cd18 (patch) | |
tree | 8bb5322723865aaad9419654a97663b164d6c822 /libblake.h | |
parent | Add documentation (diff) | |
download | libblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.gz libblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.bz2 libblake-77ec37eccf2bc4103f9fc784039b7d7b69d5cd18.tar.xz |
m doc fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libblake.h')
-rw-r--r-- | libblake.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]); |