]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/crypto/sha1.h
xnu-344.tar.gz
[apple/xnu.git] / bsd / crypto / sha1.h
index 4307924432ab6eff5ed2ce141a75de48b61aeb9b..a3ee2d8347dbb1d09baa753e35d253d318091e89 100644 (file)
@@ -1,3 +1,6 @@
+/*     $FreeBSD: src/sys/crypto/sha1.h,v 1.3.2.3 2000/10/12 18:59:31 archie Exp $      */
+/*     $KAME: sha1.h,v 1.5 2000/03/27 04:36:23 sumikawa Exp $  */
+
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
  * All rights reserved.
@@ -51,10 +54,10 @@ struct sha1_ctxt {
        u_int8_t        count;
 };
 
-#if defined(KERNEL) || defined(_KERNEL)
+#ifdef KERNEL
 extern void sha1_init __P((struct sha1_ctxt *));
 extern void sha1_pad __P((struct sha1_ctxt *));
-extern void sha1_loop __P((struct sha1_ctxt *, const caddr_t, size_t));
+extern void sha1_loop __P((struct sha1_ctxt *, const u_int8_t *, size_t));
 extern void sha1_result __P((struct sha1_ctxt *, caddr_t));
 
 /* compatibilty with other SHA1 source codes */
@@ -62,7 +65,7 @@ typedef struct sha1_ctxt SHA1_CTX;
 #define SHA1Init(x)            sha1_init((x))
 #define SHA1Update(x, y, z)    sha1_loop((x), (y), (z))
 #define SHA1Final(x, y)                sha1_result((y), (x))
-#endif
+#endif /* KERNEL */
 
 #define        SHA1_RESULTLEN  (160/8)