summaryrefslogtreecommitdiffhomepage
path: root/src/crypto
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-09-04 10:44:42 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2018-09-04 11:08:29 -0600
commit4ed60c09ee40f22f99afd59f3ff94866b7aa0cc4 (patch)
treedf5d7df445df552374ea62771c9ec2e3c6c511aa /src/crypto
parent93b6e83e4faa8de6247e0e46d5060ec543befef8 (diff)
global: prefer sizeof(*pointer) when possible
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/include/zinc/blake2s.h2
-rw-r--r--src/crypto/zinc/blake2s/blake2s.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/include/zinc/blake2s.h b/src/crypto/include/zinc/blake2s.h
index 0e50836..5e32d57 100644
--- a/src/crypto/include/zinc/blake2s.h
+++ b/src/crypto/include/zinc/blake2s.h
@@ -65,7 +65,7 @@ static inline void blake2s_final(struct blake2s_state *state, u8 *out,
memzero_explicit(buffer, sizeof(buffer));
}
- memzero_explicit(state, sizeof(struct blake2s_state));
+ memzero_explicit(state, sizeof(*state));
}
static inline void blake2s(u8 *out, const u8 *in, const u8 *key,
diff --git a/src/crypto/zinc/blake2s/blake2s.c b/src/crypto/zinc/blake2s/blake2s.c
index 76232a3..13765d3 100644
--- a/src/crypto/zinc/blake2s/blake2s.c
+++ b/src/crypto/zinc/blake2s/blake2s.c
@@ -71,7 +71,7 @@ static inline void blake2s_init_param(struct blake2s_state *state,
{
int i;
- memset(state, 0, sizeof(struct blake2s_state));
+ memset(state, 0, sizeof(*state));
for (i = 0; i < 8; ++i)
state->h[i] = blake2s_iv[i] ^ le32_to_cpu(param->words[i]);
}