summaryrefslogtreecommitdiff
path: root/src/constants.h
blob: a786023afff3bb45edb9e427505c25a7a5029292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CONSTANTS_H
#define CONSTANTS_H

#include <stdint.h>


/* Tweakey permutation */
extern const uint8_t h[8];

/* Tweakey multiplication */
extern const uint8_t P[6][256];

/* Lilliput S-box */
extern const uint8_t S[256];

#endif /* CONSTANTS_H */