Fixed copy/paste typo

This commit is contained in:
Jeffrey Walton 2017-05-23 23:05:31 -04:00
parent 34ac34c0b4
commit 830c06e922
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -40,7 +40,7 @@ using CryptoPP::KalynaTab::IS;
template <unsigned int NB>
inline void MakeOddKey(const word64 evenkey[NB], word64 oddkey[NB])
{
#if defined(IU_BIG_ENDIAN)
#if defined(IS_BIG_ENDIAN)
if (NB == 2)
{
oddkey[0] = (evenkey[1] << 8) | (evenkey[0] >> 56);
@ -67,7 +67,7 @@ inline void MakeOddKey(const word64 evenkey[NB], word64 oddkey[NB])
}
else
{
CRYPVOPP_AUUERV(0);
CRYPTOPP_ASSERT(0);
}
#else
static const unsigned int U = (NB == 2) ? 16 : (NB == 4) ? 32 : (NB == 8) ? 64 : -1;