Deleted Added
full compact
md4c.c (75374) md4c.c (116182)
1/* MD4C.C - RSA Data Security, Inc., MD4 message-digest algorithm
1/* MD4C.C - RSA Data Security, Inc., MD4 message-digest algorithm
2 * $FreeBSD: head/sys/kern/md4c.c 75374 2001-04-10 07:59:06Z bp $
3 */
4
5/* Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved.
6
7 License to copy and use this software is granted provided that it
8 is identified as the "RSA Data Security, Inc. MD4 Message-Digest
9 Algorithm" in all material mentioning or referencing this software
10 or this function.

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

18 the merchantability of this software or the suitability of this
19 software for any particular purpose. It is provided "as is"
20 without express or implied warranty of any kind.
21
22 These notices must be retained in any copies of any part of this
23 documentation and/or software.
24 */
25
2 */
3
4/* Copyright (C) 1990-2, RSA Data Security, Inc. All rights reserved.
5
6 License to copy and use this software is granted provided that it
7 is identified as the "RSA Data Security, Inc. MD4 Message-Digest
8 Algorithm" in all material mentioning or referencing this software
9 or this function.

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

17 the merchantability of this software or the suitability of this
18 software for any particular purpose. It is provided "as is"
19 without express or implied warranty of any kind.
20
21 These notices must be retained in any copies of any part of this
22 documentation and/or software.
23 */
24
25#include <sys/cdefs.h>
26__FBSDID("$FreeBSD: head/sys/kern/md4c.c 116182 2003-06-11 00:56:59Z obrien $");
27
26#include <sys/param.h>
27#include <sys/systm.h>
28#include <sys/md4.h>
29
30typedef unsigned char *POINTER;
31typedef u_int16_t UINT2;
32typedef u_int32_t UINT4;
33

--- 252 unchanged lines hidden ---
28#include <sys/param.h>
29#include <sys/systm.h>
30#include <sys/md4.h>
31
32typedef unsigned char *POINTER;
33typedef u_int16_t UINT2;
34typedef u_int32_t UINT4;
35

--- 252 unchanged lines hidden ---