Home | History | Annotate | Download | only in crypto

Lines Matching refs:u32

17 extern const u32 Te0[256];
18 extern const u32 Te1[256];
19 extern const u32 Te2[256];
20 extern const u32 Te3[256];
21 extern const u32 Te4[256];
22 extern const u32 Td0[256];
23 extern const u32 Td1[256];
24 extern const u32 Td2[256];
25 extern const u32 Td3[256];
26 extern const u32 Td4[256];
27 extern const u32 rcon[10];
70 static inline u32 rotr(u32 val, int bits)
110 #define GETU32(p) SWAP(*((u32 *)(p)))
111 #define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
113 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ \
114 ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
123 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits);