config.h 337 Bytes
Newer Older
Martin Schläffer committed
1 2 3
#ifndef CONFIG_H_
#define CONFIG_H_

Enrico Pozzobon committed
4
/* inline the ascon mode */
Martin Schläffer committed
5 6 7 8
#ifndef ASCON_INLINE_MODE
#define ASCON_INLINE_MODE 1
#endif

Enrico Pozzobon committed
9
/* inline all permutations */
Martin Schläffer committed
10 11 12 13
#ifndef ASCON_INLINE_PERM
#define ASCON_INLINE_PERM 1
#endif

Enrico Pozzobon committed
14
/* unroll permutation loops */
Martin Schläffer committed
15 16 17 18 19
#ifndef ASCON_UNROLL_LOOPS
#define ASCON_UNROLL_LOOPS 1
#endif

#endif /* CONFIG_H_ */