PandA-2024.02
documentation
tutorial_fpt_2017
intro
third
src
keccak_coproc.c
Go to the documentation of this file.
1
#include "Keccak.h"
2
3
void
keccak_coproc
(
UINT64
*
A
)
4
{
5
unsigned
int
i;
6
for
(i=0;i<
nrRounds
;i++) {
7
theta
(A);
8
rho
(A);
9
pi
(A);
10
chi
(A);
11
iota
(A,i);
12
}
13
}
pi
void pi(UINT64 *A)
Definition:
Keccak.c:102
rho
void rho(UINT64 *A)
Definition:
Keccak.c:94
keccak_coproc
void keccak_coproc(UINT64 *A)
Definition:
keccak_coproc.c:3
A
#define A
Definition:
generate.c:13
UINT64
unsigned long long int UINT64
Definition:
Keccak.c:13
nrRounds
#define nrRounds
Definition:
Keccak.c:14
theta
void theta(UINT64 *A)
Definition:
Keccak.c:77
iota
void iota(UINT64 *A, unsigned int indexRound)
Definition:
Keccak.c:126
chi
void chi(UINT64 *A)
Definition:
Keccak.c:113
Generated on Mon Feb 12 2024 13:02:48 for PandA-2024.02 by
1.8.13