• Home
  • Raw
  • Download

Lines Matching refs:UInt32

9 static UInt32 T[256 * 4];
28 void MY_FAST_CALL AesCbc_Encode(UInt32 *ivAes, Byte *data, size_t numBlocks);
29 void MY_FAST_CALL AesCbc_Decode(UInt32 *ivAes, Byte *data, size_t numBlocks);
30 void MY_FAST_CALL AesCtr_Code(UInt32 *ivAes, Byte *data, size_t numBlocks);
32 void MY_FAST_CALL AesCbc_Encode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
33 void MY_FAST_CALL AesCbc_Decode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
34 void MY_FAST_CALL AesCtr_Code_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
40 static UInt32 D[256 * 4];
47 #define Ui32(a0, a1, a2, a3) ((UInt32)(a0) | ((UInt32)(a1) << 8) | ((UInt32)(a2) << 16) | ((UInt32)…
63 UInt32 a1 = Sbox[i]; in AesGenTables()
64 UInt32 a2 = xtime(a1); in AesGenTables()
65 UInt32 a3 = a2 ^ a1; in AesGenTables()
72 UInt32 a1 = InvS[i]; in AesGenTables()
73 UInt32 a2 = xtime(a1); in AesGenTables()
74 UInt32 a4 = xtime(a2); in AesGenTables()
75 UInt32 a8 = xtime(a4); in AesGenTables()
76 UInt32 a9 = a8 ^ a1; in AesGenTables()
77 UInt32 aB = a8 ^ a2 ^ a1; in AesGenTables()
78 UInt32 aD = a8 ^ a4 ^ a1; in AesGenTables()
79 UInt32 aE = a8 ^ a4 ^ a2; in AesGenTables()
137 void MY_FAST_CALL Aes_SetKey_Enc(UInt32 *w, const Byte *key, unsigned keySize) in Aes_SetKey_Enc()
142 w[0] = ((UInt32)keySize / 2) + 3; in Aes_SetKey_Enc()
150 UInt32 t = w[i - 1]; in Aes_SetKey_Enc()
160 void MY_FAST_CALL Aes_SetKey_Dec(UInt32 *w, const Byte *key, unsigned keySize) in Aes_SetKey_Dec()
168 UInt32 r = w[i]; in Aes_SetKey_Dec()
181 static void Aes_Encode(const UInt32 *w, UInt32 *dest, const UInt32 *src) in Aes_Encode()
183 UInt32 s[4]; in Aes_Encode()
184 UInt32 m[4]; in Aes_Encode()
185 UInt32 numRounds2 = w[0]; in Aes_Encode()
204 static void Aes_Decode(const UInt32 *w, UInt32 *dest, const UInt32 *src) in Aes_Decode()
206 UInt32 s[4]; in Aes_Decode()
207 UInt32 m[4]; in Aes_Decode()
208 UInt32 numRounds2 = w[0]; in Aes_Decode()
225 void AesCbc_Init(UInt32 *p, const Byte *iv) in AesCbc_Init()
232 void MY_FAST_CALL AesCbc_Encode(UInt32 *p, Byte *data, size_t numBlocks) in AesCbc_Encode()
250 void MY_FAST_CALL AesCbc_Decode(UInt32 *p, Byte *data, size_t numBlocks) in AesCbc_Decode()
252 UInt32 in[4], out[4]; in AesCbc_Decode()
274 void MY_FAST_CALL AesCtr_Code(UInt32 *p, Byte *data, size_t numBlocks) in AesCtr_Code()
278 UInt32 temp[4]; in AesCtr_Code()