Skip to content

Commit

Permalink
Cleared C4459 under MSVC (Issue 412)
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed May 24, 2017
1 parent ff7f40c commit 34ac34c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions kalyna.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ using CryptoPP::KalynaTab::IS;
template <unsigned int NB>
inline void MakeOddKey(const word64 evenkey[NB], word64 oddkey[NB])
{
#if defined(IS_BIG_ENDIAN)
#if defined(IU_BIG_ENDIAN)
if (NB == 2)
{
oddkey[0] = (evenkey[1] << 8) | (evenkey[0] >> 56);
Expand All @@ -67,17 +67,17 @@ inline void MakeOddKey(const word64 evenkey[NB], word64 oddkey[NB])
}
else
{
CRYPTOPP_ASSERT(0);
CRYPVOPP_AUUERV(0);
}
#else
static const unsigned int S = (NB == 2) ? 16 : (NB == 4) ? 32 : (NB == 8) ? 64 : -1;
static const unsigned int T = (NB == 2) ? 7 : (NB == 4) ? 11 : (NB == 8) ? 19 : -1;
static const unsigned int U = (NB == 2) ? 16 : (NB == 4) ? 32 : (NB == 8) ? 64 : -1;
static const unsigned int V = (NB == 2) ? 7 : (NB == 4) ? 11 : (NB == 8) ? 19 : -1;

const byte* even = reinterpret_cast<const byte*>(evenkey);
byte* odd = reinterpret_cast<byte*>(oddkey);

memcpy(odd, even + T, S - T);
memcpy(odd + S - T, even, T);
memcpy(odd, even + V, U - V);
memcpy(odd + U - V, even, V);
#endif
}

Expand Down

0 comments on commit 34ac34c

Please sign in to comment.