permutations.c 297 Bytes
Newer Older
Christoph Dobraunig committed
1 2
#include "permutations.h"

Enrico Pozzobon committed
3
#if !ASCON_INLINE_PERM && ASCON_UNROLL_LOOPS
Martin Schläffer committed
4

Enrico Pozzobon committed
5 6 7
void P12(state_t* s) { P12ROUNDS(s); }
void P8(state_t* s) { P8ROUNDS(s); }
void P6(state_t* s) { P6ROUNDS(s); }
Martin Schläffer committed
8 9 10

#endif

Enrico Pozzobon committed
11 12 13
#if !ASCON_INLINE_PERM && !ASCON_UNROLL_LOOPS

void P(state_t* s, int nr) { PROUNDS(s, nr); }
Martin Schläffer committed
14 15

#endif