123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- /**************************************************************************
- * This code is based on Szymon Stefanek AES implementation: *
- * http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-cpplib.tar.gz *
- * *
- * Dynamic tables generation is based on the Brian Gladman work: *
- * http://fp.gladman.plus.com/cryptography_technology/rijndael *
- **************************************************************************/
- #include "rar.hpp"
- const int uKeyLenInBytes=16, m_uRounds=10;
- static byte S[256],S5[256],rcon[30];
- static byte T1[256][4],T2[256][4],T3[256][4],T4[256][4];
- static byte T5[256][4],T6[256][4],T7[256][4],T8[256][4];
- static byte U1[256][4],U2[256][4],U3[256][4],U4[256][4];
- inline void Xor128(byte *dest,const byte *arg1,const byte *arg2)
- {
- #if defined(PRESENT_INT32) && defined(ALLOW_NOT_ALIGNED_INT)
- ((uint32*)dest)[0]=((uint32*)arg1)[0]^((uint32*)arg2)[0];
- ((uint32*)dest)[1]=((uint32*)arg1)[1]^((uint32*)arg2)[1];
- ((uint32*)dest)[2]=((uint32*)arg1)[2]^((uint32*)arg2)[2];
- ((uint32*)dest)[3]=((uint32*)arg1)[3]^((uint32*)arg2)[3];
- #else
- for (int I=0;I<16;I++)
- dest[I]=arg1[I]^arg2[I];
- #endif
- }
- inline void Xor128(byte *dest,const byte *arg1,const byte *arg2,
- const byte *arg3,const byte *arg4)
- {
- #if defined(PRESENT_INT32) && defined(ALLOW_NOT_ALIGNED_INT)
- (*(uint32*)dest)=(*(uint32*)arg1)^(*(uint32*)arg2)^(*(uint32*)arg3)^(*(uint32*)arg4);
- #else
- for (int I=0;I<4;I++)
- dest[I]=arg1[I]^arg2[I]^arg3[I]^arg4[I];
- #endif
- }
- inline void Copy128(byte *dest,const byte *src)
- {
- #if defined(PRESENT_INT32) && defined(ALLOW_NOT_ALIGNED_INT)
- ((uint32*)dest)[0]=((uint32*)src)[0];
- ((uint32*)dest)[1]=((uint32*)src)[1];
- ((uint32*)dest)[2]=((uint32*)src)[2];
- ((uint32*)dest)[3]=((uint32*)src)[3];
- #else
- for (int I=0;I<16;I++)
- dest[I]=src[I];
- #endif
- }
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- // API
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- Rijndael::Rijndael()
- {
- if (S[0]==0)
- GenerateTables();
- }
- void Rijndael::init(Direction dir,const byte * key,byte * initVector)
- {
- m_direction = dir;
- byte keyMatrix[_MAX_KEY_COLUMNS][4];
- for(uint i = 0;i < uKeyLenInBytes;i++)
- keyMatrix[i >> 2][i & 3] = key[i];
- for(int i = 0;i < MAX_IV_SIZE;i++)
- m_initVector[i] = initVector[i];
- keySched(keyMatrix);
- if(m_direction == Decrypt)
- keyEncToDec();
- }
-
- size_t Rijndael::blockDecrypt(const byte *input, size_t inputLen, byte *outBuffer)
- {
- if (input == 0 || inputLen <= 0)
- return 0;
- byte block[16], iv[4][4];
- memcpy(iv,m_initVector,16);
- size_t numBlocks=inputLen/16;
- for (size_t i = numBlocks; i > 0; i--)
- {
- decrypt(input, block);
- Xor128(block,block,(byte*)iv);
- #if STRICT_ALIGN
- memcpy(iv, input, 16);
- memcpy(outBuf, block, 16);
- #else
- Copy128((byte*)iv,input);
- Copy128(outBuffer,block);
- #endif
- input += 16;
- outBuffer += 16;
- }
- memcpy(m_initVector,iv,16);
-
- return 16*numBlocks;
- }
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- // ALGORITHM
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- void Rijndael::keySched(byte key[_MAX_KEY_COLUMNS][4])
- {
- int j,rconpointer = 0;
- // Calculate the necessary round keys
- // The number of calculations depends on keyBits and blockBits
- int uKeyColumns = m_uRounds - 6;
- byte tempKey[_MAX_KEY_COLUMNS][4];
- // Copy the input key to the temporary key matrix
- memcpy(tempKey,key,sizeof(tempKey));
- int r = 0;
- int t = 0;
- // copy values into round key array
- for(j = 0;(j < uKeyColumns) && (r <= m_uRounds); )
- {
- for(;(j < uKeyColumns) && (t < 4); j++, t++)
- for (int k=0;k<4;k++)
- m_expandedKey[r][t][k]=tempKey[j][k];
- if(t == 4)
- {
- r++;
- t = 0;
- }
- }
-
- while(r <= m_uRounds)
- {
- tempKey[0][0] ^= S[tempKey[uKeyColumns-1][1]];
- tempKey[0][1] ^= S[tempKey[uKeyColumns-1][2]];
- tempKey[0][2] ^= S[tempKey[uKeyColumns-1][3]];
- tempKey[0][3] ^= S[tempKey[uKeyColumns-1][0]];
- tempKey[0][0] ^= rcon[rconpointer++];
- if (uKeyColumns != 8)
- for(j = 1; j < uKeyColumns; j++)
- for (int k=0;k<4;k++)
- tempKey[j][k] ^= tempKey[j-1][k];
- else
- {
- for(j = 1; j < uKeyColumns/2; j++)
- for (int k=0;k<4;k++)
- tempKey[j][k] ^= tempKey[j-1][k];
- tempKey[uKeyColumns/2][0] ^= S[tempKey[uKeyColumns/2 - 1][0]];
- tempKey[uKeyColumns/2][1] ^= S[tempKey[uKeyColumns/2 - 1][1]];
- tempKey[uKeyColumns/2][2] ^= S[tempKey[uKeyColumns/2 - 1][2]];
- tempKey[uKeyColumns/2][3] ^= S[tempKey[uKeyColumns/2 - 1][3]];
- for(j = uKeyColumns/2 + 1; j < uKeyColumns; j++)
- for (int k=0;k<4;k++)
- tempKey[j][k] ^= tempKey[j-1][k];
- }
- for(j = 0; (j < uKeyColumns) && (r <= m_uRounds); )
- {
- for(; (j < uKeyColumns) && (t < 4); j++, t++)
- for (int k=0;k<4;k++)
- m_expandedKey[r][t][k] = tempKey[j][k];
- if(t == 4)
- {
- r++;
- t = 0;
- }
- }
- }
- }
- void Rijndael::keyEncToDec()
- {
- for(int r = 1; r < m_uRounds; r++)
- {
- byte n_expandedKey[4][4];
- for (int i=0;i<4;i++)
- for (int j=0;j<4;j++)
- {
- byte *w=m_expandedKey[r][j];
- n_expandedKey[j][i]=U1[w[0]][i]^U2[w[1]][i]^U3[w[2]][i]^U4[w[3]][i];
- }
- memcpy(m_expandedKey[r],n_expandedKey,sizeof(m_expandedKey[0]));
- }
- }
- void Rijndael::decrypt(const byte a[16], byte b[16])
- {
- int r;
- byte temp[4][4];
-
- Xor128((byte*)temp,(byte*)a,(byte*)m_expandedKey[m_uRounds]);
- Xor128(b, T5[temp[0][0]],T6[temp[3][1]],T7[temp[2][2]],T8[temp[1][3]]);
- Xor128(b+4, T5[temp[1][0]],T6[temp[0][1]],T7[temp[3][2]],T8[temp[2][3]]);
- Xor128(b+8, T5[temp[2][0]],T6[temp[1][1]],T7[temp[0][2]],T8[temp[3][3]]);
- Xor128(b+12,T5[temp[3][0]],T6[temp[2][1]],T7[temp[1][2]],T8[temp[0][3]]);
- for(r = m_uRounds-1; r > 1; r--)
- {
- Xor128((byte*)temp,(byte*)b,(byte*)m_expandedKey[r]);
- Xor128(b, T5[temp[0][0]],T6[temp[3][1]],T7[temp[2][2]],T8[temp[1][3]]);
- Xor128(b+4, T5[temp[1][0]],T6[temp[0][1]],T7[temp[3][2]],T8[temp[2][3]]);
- Xor128(b+8, T5[temp[2][0]],T6[temp[1][1]],T7[temp[0][2]],T8[temp[3][3]]);
- Xor128(b+12,T5[temp[3][0]],T6[temp[2][1]],T7[temp[1][2]],T8[temp[0][3]]);
- }
-
- Xor128((byte*)temp,(byte*)b,(byte*)m_expandedKey[1]);
- b[ 0] = S5[temp[0][0]];
- b[ 1] = S5[temp[3][1]];
- b[ 2] = S5[temp[2][2]];
- b[ 3] = S5[temp[1][3]];
- b[ 4] = S5[temp[1][0]];
- b[ 5] = S5[temp[0][1]];
- b[ 6] = S5[temp[3][2]];
- b[ 7] = S5[temp[2][3]];
- b[ 8] = S5[temp[2][0]];
- b[ 9] = S5[temp[1][1]];
- b[10] = S5[temp[0][2]];
- b[11] = S5[temp[3][3]];
- b[12] = S5[temp[3][0]];
- b[13] = S5[temp[2][1]];
- b[14] = S5[temp[1][2]];
- b[15] = S5[temp[0][3]];
- Xor128((byte*)b,(byte*)b,(byte*)m_expandedKey[0]);
- }
- #define ff_poly 0x011b
- #define ff_hi 0x80
- #define FFinv(x) ((x) ? pow[255 - log[x]]: 0)
- #define FFmul02(x) (x ? pow[log[x] + 0x19] : 0)
- #define FFmul03(x) (x ? pow[log[x] + 0x01] : 0)
- #define FFmul09(x) (x ? pow[log[x] + 0xc7] : 0)
- #define FFmul0b(x) (x ? pow[log[x] + 0x68] : 0)
- #define FFmul0d(x) (x ? pow[log[x] + 0xee] : 0)
- #define FFmul0e(x) (x ? pow[log[x] + 0xdf] : 0)
- #define fwd_affine(x) \
- (w = (uint)x, w ^= (w<<1)^(w<<2)^(w<<3)^(w<<4), (byte)(0x63^(w^(w>>8))))
- #define inv_affine(x) \
- (w = (uint)x, w = (w<<1)^(w<<3)^(w<<6), (byte)(0x05^(w^(w>>8))))
- void Rijndael::GenerateTables()
- {
- unsigned char pow[512],log[256];
- int i = 0, w = 1;
- do
- {
- pow[i] = (byte)w;
- pow[i + 255] = (byte)w;
- log[w] = (byte)i++;
- w ^= (w << 1) ^ (w & ff_hi ? ff_poly : 0);
- } while (w != 1);
-
- for (int i = 0,w = 1; i < sizeof(rcon)/sizeof(rcon[0]); i++)
- {
- rcon[i] = w;
- w = (w << 1) ^ (w & ff_hi ? ff_poly : 0);
- }
- for(int i = 0; i < 256; ++i)
- {
- unsigned char b=S[i]=fwd_affine(FFinv((byte)i));
- T1[i][1]=T1[i][2]=T2[i][2]=T2[i][3]=T3[i][0]=T3[i][3]=T4[i][0]=T4[i][1]=b;
- T1[i][0]=T2[i][1]=T3[i][2]=T4[i][3]=FFmul02(b);
- T1[i][3]=T2[i][0]=T3[i][1]=T4[i][2]=FFmul03(b);
- S5[i] = b = FFinv(inv_affine((byte)i));
- U1[b][3]=U2[b][0]=U3[b][1]=U4[b][2]=T5[i][3]=T6[i][0]=T7[i][1]=T8[i][2]=FFmul0b(b);
- U1[b][1]=U2[b][2]=U3[b][3]=U4[b][0]=T5[i][1]=T6[i][2]=T7[i][3]=T8[i][0]=FFmul09(b);
- U1[b][2]=U2[b][3]=U3[b][0]=U4[b][1]=T5[i][2]=T6[i][3]=T7[i][0]=T8[i][1]=FFmul0d(b);
- U1[b][0]=U2[b][1]=U3[b][2]=U4[b][3]=T5[i][0]=T6[i][1]=T7[i][2]=T8[i][3]=FFmul0e(b);
- }
- }
|