Lines Matching refs:state
33 void KeccakP1600_Initialize(void *state);
35 #define KeccakP1600_AddByte(state, byte, offset) \ argument
36 ((unsigned char*)(state))[(offset)] ^= (byte)
38 void KeccakP1600_AddByte(void *state, unsigned char data, unsigned int offset);
40 void KeccakP1600_AddBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int…
41 void KeccakP1600_OverwriteBytes(void *state, const unsigned char *data, unsigned int offset, unsign…
42 void KeccakP1600_OverwriteWithZeroes(void *state, unsigned int byteCount);
43 void KeccakP1600_Permute_Nrounds(void *state, unsigned int nrounds);
44 void KeccakP1600_Permute_12rounds(void *state);
45 void KeccakP1600_Permute_24rounds(void *state);
46 void KeccakP1600_ExtractBytes(const void *state, unsigned char *data, unsigned int offset, unsigned…
47 void KeccakP1600_ExtractAndAddBytes(const void *state, const unsigned char *input, unsigned char *o…
48 size_t KeccakF1600_FastLoop_Absorb(void *state, unsigned int laneCount, const unsigned char *data, …