Remove unnecessary cast
This commit is contained in:
parent
3d666ce901
commit
175bcccee1
@ -286,7 +286,7 @@ crypto_hash(unsigned char *out, const unsigned char *in,
|
|||||||
crypto_hash_sha256_state state;
|
crypto_hash_sha256_state state;
|
||||||
|
|
||||||
crypto_hash_sha256_init(&state);
|
crypto_hash_sha256_init(&state);
|
||||||
if (crypto_hash_sha256_update(&state, (const void *) in, inlen) != 0) {
|
if (crypto_hash_sha256_update(&state, in, inlen) != 0) {
|
||||||
sodium_memzero(out, crypto_hash_BYTES);
|
sodium_memzero(out, crypto_hash_BYTES);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user