summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1997-07-10 23:37:49 +0000
committermillert <millert@openbsd.org>1997-07-10 23:37:49 +0000
commit14304550948195af44e55a7750a8d6a003015df9 (patch)
tree9dfb52418d1b6893fd23ad7a5e4037a58cc687ac
parentadd insert char capability (and no bickering about it being ANSI 8c{)] (diff)
downloadwireguard-openbsd-14304550948195af44e55a7750a8d6a003015df9.tar.xz
wireguard-openbsd-14304550948195af44e55a7750a8d6a003015df9.zip
Be consistent wrt unsigned vs. u_*
-rw-r--r--include/sha1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sha1.h b/include/sha1.h
index c876d8a6aa9..a3c6193bea1 100644
--- a/include/sha1.h
+++ b/include/sha1.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sha1.h,v 1.5 1997/07/10 22:53:01 millert Exp $ */
+/* $OpenBSD: sha1.h,v 1.6 1997/07/10 23:37:49 millert Exp $ */
/*
* SHA-1 in C
@@ -15,9 +15,9 @@ typedef struct {
u_char buffer[64];
} SHA1_CTX;
-void SHA1Transform __P((u_int32_t state[5], unsigned char buffer[64]));
-void SHA1Init __P((SHA1_CTX* context));
-void SHA1Update __P((SHA1_CTX* context, unsigned char* data, unsigned int len));
-void SHA1Final __P((unsigned char digest[20], SHA1_CTX* context));
+void SHA1Transform __P((u_int32_t state[5], u_char buffer[64]));
+void SHA1Init __P((SHA1_CTX *context));
+void SHA1Update __P((SHA1_CTX *context, u_char *data, u_int len));
+void SHA1Final __P((u_char digest[20], SHA1_CTX *context));
#endif /* _SHA1_H */