diff options
author | Mattias Andrée <maandree@kth.se> | 2022-01-19 22:39:52 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-01-19 22:39:52 +0100 |
commit | cb9fd292424291ef4927f5bceb5910bf52a88a58 (patch) | |
tree | 83c6eadf1986d16c87941396accfba360ea4648c /libblake_blake2b_init.c | |
parent | Add todos about more tests being needed (diff) | |
download | libblake-cb9fd292424291ef4927f5bceb5910bf52a88a58.tar.gz libblake-cb9fd292424291ef4927f5bceb5910bf52a88a58.tar.bz2 libblake-cb9fd292424291ef4927f5bceb5910bf52a88a58.tar.xz |
Fix warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libblake_blake2b_init.c')
-rw-r--r-- | libblake_blake2b_init.c | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/libblake_blake2b_init.c b/libblake_blake2b_init.c index f07d1ef..cf5f35f 100644 --- a/libblake_blake2b_init.c +++ b/libblake_blake2b_init.c @@ -37,15 +37,22 @@ libblake_blake2b_init(struct libblake_blake2b_state *state, const struct libblak state->f[0] = 0; state->f[1] = 0; - if (offsetof(struct libblake_blake2b_params, inner_len) == 17) { - state->h[0] ^= le64(((uint_least64_t *)params)[0]); - state->h[1] ^= le64(((uint_least64_t *)params)[1]); + if (CODE_KILLER(offsetof(struct libblake_blake2b_params, inner_len) == 17)) { +#if defined(__clang__) +# pragma clang diagnostic push +# pragma clang diagnostic ignored "-Wcast-align" +#endif + state->h[0] ^= le64(((const uint_least64_t *)params)[0]); + state->h[1] ^= le64(((const uint_least64_t *)params)[1]); state->h[2] ^= le64(((uint_least64_t)params->node_depth << 0) | ((uint_least64_t)params->inner_len << 8)); - state->h[4] ^= le64(*(uint_least64_t *)¶ms->salt[0]); - state->h[5] ^= le64(*(uint_least64_t *)¶ms->salt[8]); - state->h[6] ^= le64(*(uint_least64_t *)¶ms->pepper[0]); - state->h[7] ^= le64(*(uint_least64_t *)¶ms->pepper[8]); + state->h[4] ^= le64(*(const uint_least64_t *)¶ms->salt[0]); + state->h[5] ^= le64(*(const uint_least64_t *)¶ms->salt[8]); + state->h[6] ^= le64(*(const uint_least64_t *)¶ms->pepper[0]); + state->h[7] ^= le64(*(const uint_least64_t *)¶ms->pepper[8]); +#if defined(__clang__) +# pragma clang diagnostic pop +#endif } else { state->h[0] ^= ((uint_least64_t)params->digest_len & 255) << 0; state->h[0] ^= ((uint_least64_t)params->key_len & 255) << 8; |