summaryrefslogtreecommitdiffstats
path: root/lib/libmd/rmddriver.c
blob: 1c03b79b76be6725e88aade48c7b36073ed4318f (plain)
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
/* RIPEMD160DRIVER.C - test driver for RIPEMD160 */

/* 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. */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

#include <sys/types.h>

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

#include "ripemd.h"

/* Digests a string and prints the result. */
static void 
RIPEMD160String(char *string)
{
	char buf[2*20 + 1];

	printf("RIPEMD160 (\"%s\") = %s\n",
	       string, RIPEMD160_Data(string, strlen(string), buf));
}

/* Digests a reference suite of strings and prints the results. */
int
main(void)
{
	printf("RIPEMD160 test suite:\n");

	RIPEMD160String("");
	RIPEMD160String("abc");
	RIPEMD160String("message digest");
	RIPEMD160String("abcdefghijklmnopqrstuvwxyz");
	RIPEMD160String("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
		"abcdefghijklmnopqrstuvwxyz0123456789");
	RIPEMD160String("1234567890123456789012345678901234567890"
		"1234567890123456789012345678901234567890");

	return 0;
}
OpenPOWER on IntegriCloud