aboutsummaryrefslogtreecommitdiffstats
path: root/marshal.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-02-10 13:48:27 +0100
committerMattias Andrée <maandree@kth.se>2019-02-10 13:48:27 +0100
commit7f5da97d1078fbeee7ef6125802ab2c7092079e0 (patch)
treeb29926c0c1c07ad3cfd543fa3a4eedf5a60b385a /marshal.c
parentAdd test cases (diff)
downloadlibsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.gz
libsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.bz2
libsha2-7f5da97d1078fbeee7ef6125802ab2c7092079e0.tar.xz
Minor fixes and tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/marshal.c b/marshal.c
index cae5b20..ed0cce5 100644
--- a/marshal.c
+++ b/marshal.c
@@ -50,8 +50,8 @@ libsha2_marshal(const struct libsha2_state *restrict state, char *restrict buf)
*(size_t *)&buf[off] = state->chunk_size;
off += sizeof(size_t);
if (buf)
- memcpy(&buf[off], state->chunk, state->message_size % state->chunk_size);
- off += state->message_size % state->chunk_size;
+ memcpy(&buf[off], state->chunk, (state->message_size / 8) % state->chunk_size);
+ off += (state->message_size / 8) % state->chunk_size;
return off;
}