1 1.1 elad /* $NetBSD: sha1hl.c,v 1.1 2005/09/24 19:04:52 elad Exp $ */ 2 1.1 elad 3 1.1 elad /* 4 1.1 elad * Derived from code ritten by Jason R. Thorpe <thorpej (at) NetBSD.org>, 5 1.1 elad * April 29, 1997. 6 1.1 elad * Public domain. 7 1.1 elad */ 8 1.1 elad 9 1.1 elad #include <sys/cdefs.h> 10 1.1 elad #if defined(LIBC_SCCS) && !defined(lint) 11 1.1 elad __RCSID("$NetBSD: sha1hl.c,v 1.1 2005/09/24 19:04:52 elad Exp $"); 12 1.1 elad #endif /* LIBC_SCCS and not lint */ 13 1.1 elad 14 1.1 elad #define HASH_ALGORITHM SHA1 15 1.1 elad 16 1.1 elad #include "namespace.h" 17 1.1 elad #include <sha1.h> /* XXX */ 18 1.1 elad 19 1.1 elad #if HAVE_NBTOOL_CONFIG_H 20 1.1 elad #include "nbtool_config.h" 21 1.1 elad #endif 22 1.1 elad 23 1.1 elad #include "../hash.c" 24