diff options
author | weidai <weidai11@users.noreply.github.com> | 2003-09-05 20:29:39 +0000 |
---|---|---|
committer | weidai <weidai11@users.noreply.github.com> | 2003-09-05 20:29:39 +0000 |
commit | 0ad5a52c9adf18fbd24ff8f66e191979806656ae (patch) | |
tree | f2dc0c8f0d2f62a41052a42be7b2d9fd39e5fcd3 /whrlpool.cpp | |
parent | 8fadc8aea6b8ea0e7f1d6ae12e31f34e5c9c221a (diff) | |
download | cryptopp-git-0ad5a52c9adf18fbd24ff8f66e191979806656ae.tar.gz |
use memset instead of assignment to clear memory
Diffstat (limited to 'whrlpool.cpp')
-rw-r--r-- | whrlpool.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/whrlpool.cpp b/whrlpool.cpp index f2462f2c..7f3195b2 100644 --- a/whrlpool.cpp +++ b/whrlpool.cpp @@ -64,8 +64,7 @@ void Whirlpool_TestInstantiations() void Whirlpool::InitState(HashWordType *state) { - state[0] = state[1] = state[2] = state[3] = - state[4] = state[5] = state[6] = state[7] = 0; + memset(state, 0, 8*sizeof(state[0])); } void Whirlpool::TruncatedFinal(byte *hash, unsigned int size) |