1 1.6 lukem /* $NetBSD: md5hl.c,v 1.6 2005/06/12 05:34:34 lukem Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /* 4 1.4 salo * Written by Jason R. Thorpe <thorpej (at) NetBSD.org>, April 29, 1997. 5 1.1 thorpej * Public domain. 6 1.1 thorpej */ 7 1.1 thorpej 8 1.6 lukem #include <sys/cdefs.h> 9 1.6 lukem #if defined(LIBC_SCCS) && !defined(lint) 10 1.6 lukem __RCSID("$NetBSD: md5hl.c,v 1.6 2005/06/12 05:34:34 lukem Exp $"); 11 1.6 lukem #endif /* LIBC_SCCS and not lint */ 12 1.6 lukem 13 1.1 thorpej #define MDALGORITHM MD5 14 1.1 thorpej 15 1.2 kleink #include "namespace.h" 16 1.1 thorpej #include <md5.h> 17 1.1 thorpej 18 1.5 lukem #if HAVE_NBTOOL_CONFIG_H 19 1.5 lukem #include "nbtool_config.h" 20 1.3 bjh21 #endif 21 1.3 bjh21 22 1.3 bjh21 #if !HAVE_MD5_H 23 1.1 thorpej #include "mdXhl.c" 24 1.3 bjh21 #endif 25