4 typedef unsigned char UINT8;
5 typedef unsigned long long int UINT64;
10 #define index(x, y) (((x)%5)+5*((y)%5)) 11 #define ROL64(a, offset) ((offset != 0) ? ((((UINT64)a) << offset) ^ (((UINT64)a) >> (64-offset))) : a)
unsigned long long int UINT64