diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-04 21:59:03 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-04 21:59:03 +0200 |
commit | f305ea71e507936ee44c3c0bdf144902b4f705ff (patch) | |
tree | 650178424258b64056f3d18b544e4941cf60477c | |
parent | Add more BLAKE2 tests and fix keyed BLAKE2 support in libhashsum_init_hasher_from_string (diff) | |
download | libhashsum-f305ea71e507936ee44c3c0bdf144902b4f705ff.tar.gz libhashsum-f305ea71e507936ee44c3c0bdf144902b4f705ff.tar.bz2 libhashsum-f305ea71e507936ee44c3c0bdf144902b4f705ff.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libhashsum.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhashsum.h b/libhashsum.h index 777176b..a0836b8 100644 --- a/libhashsum.h +++ b/libhashsum.h @@ -1260,7 +1260,7 @@ int libhashsum_init_blake_hasher(struct libhashsum_hasher *this, size_t hashbits * @since 1.0 */ LIBHASHSUM_1_NONNULL_ -int libhashsum_init_blake2s_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, /* TODO man, test */ +int libhashsum_init_blake2s_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, /* TODO man */ const void *pepper, const void *key, size_t keybits); /** @@ -1286,7 +1286,7 @@ int libhashsum_init_blake2s_hasher(struct libhashsum_hasher *this, size_t hashbi * @since 1.0 */ LIBHASHSUM_1_NONNULL_ -int libhashsum_init_blake2b_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, /* TODO man, test */ +int libhashsum_init_blake2b_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, /* TODO man */ const void *pepper, const void *key, size_t keybits); |