summaryrefslogtreecommitdiff
path: root/usr.bin/cksum/md5.c
blob: 5547771c3f4184d9d776fc5cab906022de02634b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*	$NetBSD: md5.c,v 1.10 2008/12/29 00:51:29 christos Exp $	*/

/*
 * MDDRIVER.C - test driver for MD2, MD4 and MD5
 */

/*
 *  Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
 *  rights reserved.
 *
 *  RSA Data Security, Inc. makes no representations concerning either
 *  the merchantability of this software or the suitability of this
 *  software for any particular purpose. It is provided "as is"
 *  without express or implied warranty of any kind.
 *
 *  These notices must be retained in any copies of any part of this
 *  documentation and/or software.
 */

#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif

#include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint)
__RCSID("$NetBSD: md5.c,v 1.10 2008/12/29 00:51:29 christos Exp $");
#endif /* not lint */

#include <sys/types.h>

#include <err.h>
#include <md5.h>
#include <stdio.h>
#include <string.h>
#include <time.h>

void	MD5Filter(int);
void	MD5String(const char *);
void	MD5TestSuite(void);
void	MD5TimeTrial(void);

#ifndef HASHTYPE
#define HASHTYPE "MD5"
#endif

#ifndef HASHLEN
#define HASHLEN 32
#endif

/*
 * Length of test block, number of test blocks.
 */
#define TEST_BLOCK_LEN 1000
#define TEST_BLOCK_COUNT 1000

/*
 * Digests a string and prints the result.
 */
void
MD5String(const char *string)
{
	unsigned int len = strlen(string);
	char buf[HASHLEN + 1];

	printf("%s (\"%s\") = %s\n", HASHTYPE, string,
	       MD5Data((const unsigned char *)string, len, buf));
}

/*
 * Measures the time to digest TEST_BLOCK_COUNT TEST_BLOCK_LEN-byte blocks.
 */
void
MD5TimeTrial(void)
{
	MD5_CTX context;
	time_t endTime, startTime;
	unsigned char block[TEST_BLOCK_LEN];
	unsigned int i;
	char *p, buf[HASHLEN + 1];

	printf("%s time trial.  Digesting %d %d-byte blocks ...", HASHTYPE,
	    TEST_BLOCK_LEN, TEST_BLOCK_COUNT);
	fflush(stdout);

	/* Initialize block */
	for (i = 0; i < TEST_BLOCK_LEN; i++)
		block[i] = (unsigned char) (i & 0xff);

	/* Start timer */
	time(&startTime);

	/* Digest blocks */
	MD5Init(&context);
	for (i = 0; i < TEST_BLOCK_COUNT; i++)
		MD5Update(&context, block, TEST_BLOCK_LEN);
	p = MD5End(&context,buf);

	/* Stop timer */
	time(&endTime);

	printf(" done\n");
	printf("Digest = %s\n", p);
	printf("Time = %ld seconds\n", (long) (endTime - startTime));

	/*
	 * Be careful that endTime-startTime is not zero.
	 * (Bug fix from Ric * Anderson, ric@Artisoft.COM.)
	 */
	printf("Speed = %lld bytes/second\n",
	    (long long) TEST_BLOCK_LEN * TEST_BLOCK_COUNT /
	    ((endTime - startTime) != 0 ? (endTime - startTime) : 1));
}

/*
 * Digests a reference suite of strings and prints the results.
 */
void
MD5TestSuite(void)
{
	printf("%s test suite:\n", HASHTYPE);

	MD5String("");
	MD5String("a");
	MD5String("abc");
	MD5String("message digest");
	MD5String("abcdefghijklmnopqrstuvwxyz");
	MD5String("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq");
	MD5String
	    ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
	MD5String
	    ("1234567890123456789012345678901234567890\
1234567890123456789012345678901234567890");
}

/*
 * Digests the standard input and prints the result.
 */
void
MD5Filter(int pipe)
{
	MD5_CTX context;
	size_t len;
	unsigned char buffer[BUFSIZ];
	char buf[HASHLEN + 1];

	MD5Init(&context);
	while ((len = fread(buffer, (size_t)1, (size_t)BUFSIZ, stdin)) > 0) {
		if (pipe && (len != fwrite(buffer, (size_t)1, len, stdout)))
			err(1, "stdout");
		MD5Update(&context, buffer, (unsigned int)len);
	}
	printf("%s\n", MD5End(&context,buf));
}