From b26f231cec32a485df31cdc223fe254d08554bda Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 5 Sep 2003 20:29:39 +0000 Subject: use memset instead of assignment to clear memory git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@132 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- whrlpool.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'whrlpool.cpp') diff --git a/whrlpool.cpp b/whrlpool.cpp index f2462f2..7f3195b 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) -- cgit v1.2.1