config.h 511 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
#ifndef ASCON_INLINE_MODE
Martin Schläffer committed
6
#define ASCON_INLINE_MODE 1
Martin Schläffer committed
7 8
#endif

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

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

Martin Schläffer committed
19 20 21 22 23 24 25 26 27 28
/* inline bitinterleaving */
#ifndef ASCON_INLINE_BI
#define ASCON_INLINE_BI 0
#endif

/* extern bitinterleaving */
#ifndef ASCON_EXTERN_BI
#define ASCON_EXTERN_BI 0
#endif

Martin Schläffer committed
29
#endif /* CONFIG_H_ */