constants.h 1.41 KB
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/*
 * Gage / Ingage Reference C Implementation
 *
 * Copyright 2018:
 *     Danilo Gligoroski <danilog@ntnu.no>
 *     Daniel Otte <bg@nerilex.org>
 *     Hristina Mihajloska <hristina.mihajloska@finki.ukim.mk>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 *
 */

#ifndef CONSTANTS_H_
#define CONSTANTS_H_

#include <inttypes.h>

#include "parameters.h"

/*
 * These  constants will be used as leading 2-bit values in different rounds performing
 * d-transformations on the inner state. They are obtained with genconstants.c
 *
 */
extern const uint8_t leader[255];

struct state {
	uint8_t a[INTERNAL_STATE_SIZE_BYTES];
};

/* Quasigroups Nr. 173 (in lexicigraphical order of all 576 4x4 quasigroups) */
extern const uint8_t Quas[4][4];

#endif /* CONSTANTS_H_ */