23 #ifndef LW_INTERNAL_KECCAK_H
24 #define LW_INTERNAL_KECCAK_H
26 #include "internal-util.h"
40 #define KECCAKP_200_STATE_SIZE 25
45 #define KECCAKP_400_STATE_SIZE 50
Structure of the internal state of the Keccak-p[400] permutation.
Definition: internal-keccak.h:60
void keccakp_400_permute(keccakp_400_state_t *state, unsigned rounds)
Permutes the Keccak-p[400] state, which is assumed to be in little-endian byte order.
Definition: internal-keccak.c:205
void keccakp_200_permute(keccakp_200_state_t *state)
Permutes the Keccak-p[200] state.
Definition: internal-keccak.c:33
Structure of the internal state of the Keccak-p[200] permutation.
Definition: internal-keccak.h:50