Home | History | Annotate | Line # | Download | only in md2
md2hl.c revision 1.4.10.2
      1  1.4.10.2  dholland /* $NetBSD: md2hl.c,v 1.4.10.2 2008/04/13 02:04:32 dholland Exp $ */
      2  1.4.10.2  dholland 
      3  1.4.10.2  dholland /*
      4  1.4.10.2  dholland  * Derived from code written by Jason R. Thorpe <thorpej (at) NetBSD.org>,
      5  1.4.10.2  dholland  * April 29, 1997.
      6  1.4.10.2  dholland  * Public domain.
      7  1.4.10.2  dholland  */
      8  1.4.10.2  dholland 
      9  1.4.10.2  dholland #include <sys/cdefs.h>
     10  1.4.10.2  dholland #if defined(LIBC_SCCS) && !defined(lint)
     11  1.4.10.2  dholland __RCSID("$NetBSD: md2hl.c,v 1.4.10.2 2008/04/13 02:04:32 dholland Exp $");
     12  1.4.10.2  dholland #endif /* LIBC_SCCS and not lint */
     13  1.4.10.2  dholland 
     14  1.4.10.2  dholland #define	HASH_ALGORITHM	MD2
     15  1.4.10.2  dholland #define HASH_INCLUDE	<md2.h>
     16  1.4.10.2  dholland 
     17  1.4.10.2  dholland #include "../hashhl.c"
     18