Skip to content

Commit

Permalink
Windows: Fix compilation error caused by latest MacOSX change.
Browse files Browse the repository at this point in the history
  • Loading branch information
idrassi committed Aug 17, 2016
1 parent f84dc7b commit 7ad75a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Common/Tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ unsigned long HexStringToByteArray(const char* hexStr, unsigned char* pbData)

BOOL RunHashTest (HashFunction fn, HashTestVector* vector, BOOL bUseSSE)
{
ALIGN (16) unsigned char input[256];
CRYPTOPP_ALIGN_DATA (16) unsigned char input[256];
unsigned char output[64];
unsigned char digest[64];
unsigned long i = 0, inputLen, outputLen, digestLen;
Expand Down Expand Up @@ -1290,7 +1290,7 @@ static const unsigned char gost3411_2012_hmac_r1[] = {

BOOL test_hmac_streebog ()
{
ALIGN(16) char digest[64]; /* large enough to hold digets and test vector inputs */
CRYPTOPP_ALIGN_DATA(16) char digest[64]; /* large enough to hold digets and test vector inputs */

memcpy (digest, gost3411_2012_hmac_m1, sizeof (gost3411_2012_hmac_m1));
hmac_streebog ((char*) gost3411_2012_hmac_k1, sizeof(gost3411_2012_hmac_k1), digest, (int) sizeof (gost3411_2012_hmac_m1));
Expand Down

0 comments on commit 7ad75a8

Please sign in to comment.