Deleted Added
full compact
hash.c (122871) hash.c (128059)
1/*-
1/*-
2 * Copyright (c) 2000, 2001, 2002, 2003 Mark R V Murray
2 * Copyright (c) 2000-2004 Mark R V Murray
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer
10 * in this position and unchanged.

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

21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer
10 * in this position and unchanged.

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

21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/dev/random/hash.c 122871 2003-11-17 23:02:21Z markm $");
29__FBSDID("$FreeBSD: head/sys/dev/random/hash.c 128059 2004-04-09 15:47:10Z markm $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33
34#include <crypto/rijndael/rijndael.h>
35#include <crypto/sha2/sha2.h>
36
37#include <dev/random/hash.h>

--- 44 unchanged lines hidden ---
30
31#include <sys/param.h>
32#include <sys/systm.h>
33
34#include <crypto/rijndael/rijndael.h>
35#include <crypto/sha2/sha2.h>
36
37#include <dev/random/hash.h>

--- 44 unchanged lines hidden ---