aboutsummaryrefslogtreecommitdiffstats
path: root/libhashsum_init_keccak__.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-05 18:17:36 +0200
committerMattias Andrée <maandree@kth.se>2024-09-05 18:17:36 +0200
commitcfc297ec764e3996548dee1e3e961e4dc47b6981 (patch)
tree54db785eead2ab0897ef29e0a2064a3fe68ebb36 /libhashsum_init_keccak__.c
parentAdd libhashsum_init_blake2s_hasher.3 and libhashsum_init_blake2b_hasher.3 (diff)
downloadlibhashsum-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__.c2
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;