PandA-2024.02
Keccak.h
Go to the documentation of this file.
1 #ifndef __KECCAK_H__
2 #define __KECCAK_H__
3 
4 typedef unsigned char UINT8;
5 typedef unsigned long long int UINT64;
6 #define nrRounds 24
7 
8 #define nrLanes 25
9 
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)
12 
13 
14 #endif
unsigned char UINT8
Definition: Keccak.h:4
unsigned long long int UINT64
Definition: Keccak.h:5

Generated on Mon Feb 12 2024 13:02:48 for PandA-2024.02 by doxygen 1.8.13