Deleted Added
full compact
md5.c (76988) md5.c (78732)
1/*
2 * Derived from:
3 *
4 * MDDRIVER.C - test driver for MD2, MD4 and MD5
5 */
6
7/*
8 * Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All

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

14 * without express or implied warranty of any kind.
15 *
16 * These notices must be retained in any copies of any part of this
17 * documentation and/or software.
18 */
19
20#ifndef lint
21static const char rcsid[] =
1/*
2 * Derived from:
3 *
4 * MDDRIVER.C - test driver for MD2, MD4 and MD5
5 */
6
7/*
8 * Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All

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

14 * without express or implied warranty of any kind.
15 *
16 * These notices must be retained in any copies of any part of this
17 * documentation and/or software.
18 */
19
20#ifndef lint
21static const char rcsid[] =
22 "$FreeBSD: head/sbin/md5/md5.c 76988 2001-05-22 10:33:43Z ru $";
22 "$FreeBSD: head/sbin/md5/md5.c 78732 2001-06-24 23:04:23Z dd $";
23#endif /* not lint */
24
25#include <sys/types.h>
26#include <err.h>
27#include <md5.h>
28#include <stdio.h>
29#include <time.h>
30#include <unistd.h>
23#endif /* not lint */
24
25#include <sys/types.h>
26#include <err.h>
27#include <md5.h>
28#include <stdio.h>
29#include <time.h>
30#include <unistd.h>
31#include <stdlib.h>
31#include <string.h>
32
33/*
34 * Length of test block, number of test blocks.
35 */
36#define TEST_BLOCK_LEN 10000
37#define TEST_BLOCK_COUNT 100000
38

--- 175 unchanged lines hidden ---
32#include <string.h>
33
34/*
35 * Length of test block, number of test blocks.
36 */
37#define TEST_BLOCK_LEN 10000
38#define TEST_BLOCK_COUNT 100000
39

--- 175 unchanged lines hidden ---