Clear C4456 under MSVC

pull/737/head
Jeffrey Walton 2018-11-09 09:26:09 -05:00
parent a75f0cd855
commit 28e7baf46b
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 4 additions and 4 deletions

View File

@ -148,13 +148,13 @@ void ARIA::Base::UncheckedSetKey(const byte *key, unsigned int keylen, const Nam
if (keylen == 32) if (keylen == 32)
{ {
GetBlock<word32, BigEndian, false>block(mk+16); GetBlock<word32, BigEndian, false>k32(mk+16);
block(w1[0])(w1[1])(w1[2])(w1[3]); k32(w1[0])(w1[1])(w1[2])(w1[3]);
} }
else if (keylen == 24) else if (keylen == 24)
{ {
GetBlock<word32, BigEndian, false>block(mk+16); GetBlock<word32, BigEndian, false>k24(mk+16);
block(w1[0])(w1[1]); w1[2] = w1[3] = 0; k24(w1[0])(w1[1]); w1[2] = w1[3] = 0;
} }
else else
{ {