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