diff options
author | Mattias Andrée <maandree@kth.se> | 2024-09-05 18:17:36 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-09-05 18:17:36 +0200 |
commit | cfc297ec764e3996548dee1e3e961e4dc47b6981 (patch) | |
tree | 54db785eead2ab0897ef29e0a2064a3fe68ebb36 /libhashsum_init_keccak__.c | |
parent | Add libhashsum_init_blake2s_hasher.3 and libhashsum_init_blake2b_hasher.3 (diff) | |
download | libhashsum-cfc297ec764e3996548dee1e3e961e4dc47b6981.tar.gz libhashsum-cfc297ec764e3996548dee1e3e961e4dc47b6981.tar.bz2 libhashsum-cfc297ec764e3996548dee1e3e961e4dc47b6981.tar.xz |
Add standard_partial_byte_input_encoding and standard_partial_byte_output_encoding
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libhashsum_init_keccak__.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libhashsum_init_keccak__.c b/libhashsum_init_keccak__.c index 9d58958..6e1abf7 100644 --- a/libhashsum_init_keccak__.c +++ b/libhashsum_init_keccak__.c @@ -149,6 +149,8 @@ libhashsum_init_keccak__(struct libhashsum_hasher *this, size_t hashbits, void * this->hash_size += (size_t)!!(hashbits & 7U); this->hash_output = NULL; this->supports_non_whole_bytes = 1; + this->standard_partial_byte_input_encoding = LIBHASHSUM_LEAST_SIGNIFICANT; + this->standard_partial_byte_output_encoding = LIBHASHSUM_LEAST_SIGNIFICANT; this->state.keccak.squeezes = squeezes; this->state.keccak.suffix = suffix; |