Home | History | Annotate | Line # | Download | only in sha2
sha384hl.c revision 1.6
      1  1.6  christos /* $NetBSD: sha384hl.c,v 1.6 2005/09/28 16:31:45 christos 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.6  christos __RCSID("$NetBSD: sha384hl.c,v 1.6 2005/09/28 16:31:45 christos 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.5  christos #define HASH_INCLUDE	<crypto/sha2.h>
     17  1.1      elad 
     18  1.6  christos #include "../hashhl.c"
     19