Deleted Added
full compact
des_setkey.c (91671) des_setkey.c (130443)
1/* $FreeBSD: head/sys/crypto/des/des_setkey.c 91671 2002-03-05 09:19:02Z ume $ */
2/* $KAME: des_setkey.c,v 1.7 2001/09/10 04:03:58 itojun Exp $ */
3
4/* crypto/des/set_key.c */
1/* $KAME: des_setkey.c,v 1.7 2001/09/10 04:03:58 itojun Exp $ */
2
3/* crypto/des/set_key.c */
4
5/* Copyright (C) 1995-1996 Eric Young (eay@mincom.oz.au)
6 * All rights reserved.
7 *
8 * This file is part of an SSL implementation written
9 * by Eric Young (eay@mincom.oz.au).
10 * The implementation was written so as to conform with Netscapes SSL
11 * specification. This library and applications are
12 * FREE FOR COMMERCIAL AND NON-COMMERCIAL USE

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

50
51/* set_key.c v 1.4 eay 24/9/91
52 * 1.4 Speed up by 400% :-)
53 * 1.3 added register declarations.
54 * 1.2 unrolled make_key_sched a bit more
55 * 1.1 added norm_expand_bits
56 * 1.0 First working version
57 */
5/* Copyright (C) 1995-1996 Eric Young (eay@mincom.oz.au)
6 * All rights reserved.
7 *
8 * This file is part of an SSL implementation written
9 * by Eric Young (eay@mincom.oz.au).
10 * The implementation was written so as to conform with Netscapes SSL
11 * specification. This library and applications are
12 * FREE FOR COMMERCIAL AND NON-COMMERCIAL USE

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

50
51/* set_key.c v 1.4 eay 24/9/91
52 * 1.4 Speed up by 400% :-)
53 * 1.3 added register declarations.
54 * 1.2 unrolled make_key_sched a bit more
55 * 1.1 added norm_expand_bits
56 * 1.0 First working version
57 */
58
59#include <sys/cdefs.h>
60__FBSDID("$FreeBSD: head/sys/crypto/des/des_setkey.c 130443 2004-06-14 00:38:54Z obrien $");
61
58#include <sys/param.h>
59#include <sys/systm.h>
60#include <crypto/des/des_locl.h>
61#include <crypto/des/podd.h>
62#include <crypto/des/sk.h>
63
64int des_check_key=0;
65

--- 167 unchanged lines hidden ---
62#include <sys/param.h>
63#include <sys/systm.h>
64#include <crypto/des/des_locl.h>
65#include <crypto/des/podd.h>
66#include <crypto/des/sk.h>
67
68int des_check_key=0;
69

--- 167 unchanged lines hidden ---