5NAMESPACE_BEGIN(CryptoPP)
8const byte GOST::Base::sBox[8][16]={
9 {4, 10, 9, 2, 13, 8, 0, 14, 6, 11, 1, 12, 7, 15, 5, 3},
10 {14, 11, 4, 12, 6, 13, 15, 10, 2, 3, 8, 1, 0, 7, 5, 9},
11 {5, 8, 1, 13, 10, 3, 4, 2, 14, 15, 12, 7, 6, 0, 9, 11},
12 {7, 13, 10, 1, 0, 8, 9, 15, 14, 4, 6, 12, 11, 2, 5, 3},
13 {6, 12, 7, 1, 5, 15, 13, 8, 4, 10, 9, 14, 0, 3, 11, 2},
14 {4, 11, 10, 0, 7, 2, 1, 13, 3, 6, 8, 5, 9, 12, 15, 14},
15 {13, 11, 4, 1, 3, 15, 5, 9, 0, 10, 14, 7, 6, 8, 2, 12},
16 {1, 15, 13, 0, 5, 7, 10, 4, 9, 2, 3, 14, 6, 11, 8, 12}};
30volatile bool GOST::Base::sTableCalculated =
false;
31word32 GOST::Base::sTable[4][256];
33void GOST::Base::UncheckedSetKey(
const byte *userKey,
unsigned int length,
const NameValuePairs &)
35 AssertValidKeyLength(length);
39 GetUserKey(LITTLE_ENDIAN_ORDER, m_key.begin(), 8, userKey, KEYLENGTH);
42void GOST::Base::PrecalculateSTable()
44 if (!sTableCalculated)
46 for (
unsigned i = 0; i < 4; i++)
47 for (
unsigned j = 0; j < 256; j++)
49 word32 temp = sBox[2*i][j%16] | (sBox[2*i+1][j/16] << 4);
50 sTable[i][j] =
rotlMod(temp, 11+8*i);
53 sTableCalculated=
true;
58 sTable[3][GETBYTE(t, 3)] ^ sTable[2][GETBYTE(t, 2)] \
59 ^ sTable[1][GETBYTE(t, 1)] ^ sTable[0][GETBYTE(t, 0)] )
63void GOST::Enc::ProcessAndXorBlock(
const byte *inBlock,
const byte *xorBlock,
byte *outBlock)
const
67 Block::Get(inBlock)(n1)(n2);
69 for (
unsigned int i=0; i<3; i++)
93void GOST::Dec::ProcessAndXorBlock(
const byte *inBlock,
const byte *xorBlock,
byte *outBlock)
const
97 Block::Get(inBlock)(n1)(n2);
100 n1 ^= f(n2+m_key[1]);
101 n2 ^= f(n1+m_key[2]);
102 n1 ^= f(n2+m_key[3]);
103 n2 ^= f(n1+m_key[4]);
104 n1 ^= f(n2+m_key[5]);
105 n2 ^= f(n1+m_key[6]);
106 n1 ^= f(n2+m_key[7]);
108 for (
unsigned int i=0; i<3; i++)
110 n2 ^= f(n1+m_key[7]);
111 n1 ^= f(n2+m_key[6]);
112 n2 ^= f(n1+m_key[5]);
113 n1 ^= f(n2+m_key[4]);
114 n2 ^= f(n1+m_key[3]);
115 n1 ^= f(n2+m_key[2]);
116 n2 ^= f(n1+m_key[1]);
117 n1 ^= f(n2+m_key[0]);
Interface for retrieving values given their names.
Access a block of memory.
unsigned int word32
32-bit unsigned datatype
Classes for the GIST block cipher.
Utility functions for the Crypto++ library.
void GetUserKey(ByteOrder order, T *out, size_t outlen, const byte *in, size_t inlen)
Copy bytes in a buffer to an array of elements in big-endian order.
T rotlMod(T x, unsigned int y)
Performs a left rotate.
Access a block of memory.