diff options
author | Niels Möller <nisse@lysator.liu.se> | 2018-10-10 19:44:32 +0200 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2018-10-10 19:44:32 +0200 |
commit | 45b5f8f3be9853b6db8def2da7f7ef333d6c8698 (patch) | |
tree | d1adc59ad55c908b8b8b27738db13443a1d42327 /md4.h | |
parent | caee7cedd3314c49396e5f69eb5614067e016ca4 (diff) | |
download | nettle-struct-layout.tar.gz |
Move block buffer last in hash context structs.struct-layout
Diffstat (limited to 'md4.h')
-rw-r--r-- | md4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,8 +58,8 @@ struct md4_ctx { uint32_t state[_MD4_DIGEST_LENGTH]; uint64_t count; /* Block count */ - uint8_t block[MD4_BLOCK_SIZE]; /* Block buffer */ unsigned index; /* Into buffer */ + uint8_t block[MD4_BLOCK_SIZE]; /* Block buffer */ }; void |