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