slip: Drop packets >mtu (SECURITY)
[secnet] / eax-serpent-test.c
CommitLineData
9018e07a
IJ
1/*
2 * eax-serpent-test.c: test harness glue for EAX-Serpent
3 */
4/*
5 * This file is Free Software. It was originally written for secnet.
6 *
7 * You may redistribute it and/or modify it under the terms of the GNU
8 * General Public License as published by the Free Software
9 * Foundation; either version 2, or (at your option) any later
10 * version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include "eax-test.h"
23#include "serpent.h"
24
25#define BLOCK_SIZE 16
26static struct keyInstance key;
27
28EAX_SOME_TEST;
29
30void eaxtest_blockcipher_key_setup(const uint8_t *keydata, uint8_t bytes)
31{
32 serpent_makekey(&key, bytes*8, keydata);
33}
34
35static void BLOCK_ENCRYPT(uint8_t dst[BLOCK_SIZE],
36 const uint8_t src[BLOCK_SIZE])
37{
38 serpent_encrypt(&key, src, dst);
39}
40
41#include "eax.c"