Deleted Added
full compact
bf_enc.c (91671) bf_enc.c (116174)
1/* $FreeBSD: head/sys/crypto/blowfish/bf_enc.c 91671 2002-03-05 09:19:02Z ume $ */
2/* $KAME: bf_enc.c,v 1.7 2002/02/27 01:33:59 itojun Exp $ */
3
4/* crypto/bf/bf_enc.c */
1/* $KAME: bf_enc.c,v 1.7 2002/02/27 01:33:59 itojun Exp $ */
2
3/* crypto/bf/bf_enc.c */
4
5/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
6 * All rights reserved.
7 *
8 * This package is an SSL implementation written
9 * by Eric Young (eay@cryptsoft.com).
10 * The implementation was written so as to conform with Netscapes SSL.
11 *
12 * This library is free for commercial and non-commercial use as long as

--- 41 unchanged lines hidden (view full) ---

54 * SUCH DAMAGE.
55 *
56 * The licence and distribution terms for any publically available version or
57 * derivative of this code cannot be changed. i.e. this code cannot simply be
58 * copied and put under another distribution licence
59 * [including the GNU Public Licence.]
60 */
61
5/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
6 * All rights reserved.
7 *
8 * This package is an SSL implementation written
9 * by Eric Young (eay@cryptsoft.com).
10 * The implementation was written so as to conform with Netscapes SSL.
11 *
12 * This library is free for commercial and non-commercial use as long as

--- 41 unchanged lines hidden (view full) ---

54 * SUCH DAMAGE.
55 *
56 * The licence and distribution terms for any publically available version or
57 * derivative of this code cannot be changed. i.e. this code cannot simply be
58 * copied and put under another distribution licence
59 * [including the GNU Public Licence.]
60 */
61
62#include <sys/cdefs.h>
63__FBSDID("$FreeBSD: head/sys/crypto/blowfish/bf_enc.c 116174 2003-06-10 21:44:29Z obrien $");
64
62#include <sys/types.h>
63#include <crypto/blowfish/blowfish.h>
64#include <crypto/blowfish/bf_locl.h>
65
66/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
67 * (From LECTURE NOTES IN COIMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION,
68 * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
69 */

--- 89 unchanged lines hidden ---
65#include <sys/types.h>
66#include <crypto/blowfish/blowfish.h>
67#include <crypto/blowfish/bf_locl.h>
68
69/* Blowfish as implemented from 'Blowfish: Springer-Verlag paper'
70 * (From LECTURE NOTES IN COIMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION,
71 * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
72 */

--- 89 unchanged lines hidden ---