Deleted Added
full compact
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 $
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
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 ---