diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-04 23:00:05 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-04 23:00:05 +0200 |
commit | 69f7dcbcfed0bfd1e19644ab8c2a3fc96e7a3a9f (patch) | |
tree | 9f9e45d34b4690d4254f56826a3e35169ab0a957 /libhashsum.h | |
parent | m doc improvement (diff) | |
download | libhashsum-69f7dcbcfed0bfd1e19644ab8c2a3fc96e7a3a9f.tar.gz libhashsum-69f7dcbcfed0bfd1e19644ab8c2a3fc96e7a3a9f.tar.bz2 libhashsum-69f7dcbcfed0bfd1e19644ab8c2a3fc96e7a3a9f.tar.xz |
Add libhashsum_init_blake2s_hasher.3 and libhashsum_init_blake2b_hasher.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libhashsum.h')
-rw-r--r-- | libhashsum.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhashsum.h b/libhashsum.h index a0836b8..297c62c 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 */ +int libhashsum_init_blake2s_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, 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 */ +int libhashsum_init_blake2b_hasher(struct libhashsum_hasher *this, size_t hashbits, const void *salt, const void *pepper, const void *key, size_t keybits); |