Home | History | Annotate | Line # | Download | only in cksum
rmd160.c revision 1.3
      1  1.3  christos /*	$NetBSD: rmd160.c,v 1.3 2006/10/30 20:22:54 christos Exp $	*/
      2  1.1    atatat 
      3  1.3  christos #if HAVE_NBTOOL_CONFIG_H
      4  1.3  christos #include "nbtool_config.h"
      5  1.3  christos #endif
      6  1.3  christos 
      7  1.3  christos #include <rmd160.h>	/* this hash type */
      8  1.3  christos #include <md5.h>	/* the hash we're replacing */
      9  1.1    atatat 
     10  1.1    atatat #define HASHTYPE	"RMD160"
     11  1.1    atatat #define HASHLEN		40
     12  1.1    atatat 
     13  1.1    atatat #define MD5Filter	RMD160Filter
     14  1.1    atatat #define MD5String	RMD160String
     15  1.1    atatat #define MD5TestSuite	RMD160TestSuite
     16  1.1    atatat #define MD5TimeTrial	RMD160TimeTrial
     17  1.1    atatat 
     18  1.1    atatat #define MD5Data		RMD160Data
     19  1.1    atatat #define MD5Init		RMD160Init
     20  1.1    atatat #define MD5Update	RMD160Update
     21  1.1    atatat #define MD5End		RMD160End
     22  1.1    atatat 
     23  1.1    atatat #define MD5_CTX		RMD160_CTX
     24  1.1    atatat 
     25  1.1    atatat #include "md5.c"
     26