Deleted Added
full compact
skipjack.c (116191) skipjack.c (139825)
1/* $OpenBSD: skipjack.c,v 1.3 2001/05/05 00:31:34 angelos Exp $ */
1/* $OpenBSD: skipjack.c,v 1.3 2001/05/05 00:31:34 angelos Exp $ */
2/*
2/*-
3 * Further optimized test implementation of SKIPJACK algorithm
4 * Mark Tillotson <markt@chaos.org.uk>, 25 June 98
5 * Optimizations suit RISC (lots of registers) machine best.
6 *
7 * based on unoptimized implementation of
8 * Panu Rissanen <bande@lut.fi> 960624
9 *
10 * SKIPJACK and KEA Algorithm Specifications
11 * Version 2.0
12 * 29 May 1998
13*/
14
15#include <sys/cdefs.h>
3 * Further optimized test implementation of SKIPJACK algorithm
4 * Mark Tillotson <markt@chaos.org.uk>, 25 June 98
5 * Optimizations suit RISC (lots of registers) machine best.
6 *
7 * based on unoptimized implementation of
8 * Panu Rissanen <bande@lut.fi> 960624
9 *
10 * SKIPJACK and KEA Algorithm Specifications
11 * Version 2.0
12 * 29 May 1998
13*/
14
15#include <sys/cdefs.h>
16__FBSDID("$FreeBSD: head/sys/opencrypto/skipjack.c 116191 2003-06-11 05:57:50Z obrien $");
16__FBSDID("$FreeBSD: head/sys/opencrypto/skipjack.c 139825 2005-01-07 02:29:27Z imp $");
17
18#include <sys/param.h>
19
20#include <opencrypto/skipjack.h>
21
22static const u_int8_t ftable[0x100] =
23{
24 0xa3, 0xd7, 0x09, 0x83, 0xf8, 0x48, 0xf6, 0xf4,

--- 236 unchanged lines hidden ---
17
18#include <sys/param.h>
19
20#include <opencrypto/skipjack.h>
21
22static const u_int8_t ftable[0x100] =
23{
24 0xa3, 0xd7, 0x09, 0x83, 0xf8, 0x48, 0xf6, 0xf4,

--- 236 unchanged lines hidden ---