parameters.h (656B)
1 /* 2 Implementation of the Lilliput-AE tweakable block cipher. 3 4 Authors, hereby denoted as "the implementer": 5 Kévin Le Gouguec, 6 2019. 7 8 For more information, feedback or questions, refer to our website: 9 https://paclido.fr/lilliput-ae 10 11 To the extent possible under law, the implementer has waived all copyright 12 and related or neighboring rights to the source code in this file. 13 http://creativecommons.org/publicdomain/zero/1.0/ 14 15 --- 16 17 This file defines constants specific to Lilliput-II-256. 18 */ 19 20 #ifndef PARAMETERS_H 21 #define PARAMETERS_H 22 23 #define KEY_LENGTH_BITS 256 24 #define ROUNDS 42 25 26 #define TWEAK_LENGTH_BITS 128 27 28 #endif /* PARAMETERS_H */