summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-05-03 18:05:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-05-03 18:05:09 +0000
commitb8664c21d4b0054f7cf06a77af50d464a9ec4974 (patch)
tree24082f1d9d0e5b892d20d5c7e13c591fa647e812 /include
parentdd2d88b2c079a8545b1c76429e1c046024b7396e (diff)
Use KNF indentation style and do some u_char -> u_int8_t conversion
I missed earlier.
Diffstat (limited to 'include')
-rw-r--r--include/sha1.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sha1.h b/include/sha1.h
index 5d82e75a48c..ab459437474 100644
--- a/include/sha1.h
+++ b/include/sha1.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sha1.h,v 1.20 2004/05/03 17:30:14 millert Exp $ */
+/* $OpenBSD: sha1.h,v 1.21 2004/05/03 18:05:08 millert Exp $ */
/*
* SHA-1 in C
@@ -24,7 +24,7 @@ typedef struct {
__BEGIN_DECLS
void SHA1Init(SHA1_CTX *);
void SHA1Pad(SHA1_CTX *);
-void SHA1Transform(u_int32_t [5], const u_int8_t [SHA1_BLOCK_LENGTH])
+void SHA1Transform(u_int32_t [5], u_int8_t [SHA1_BLOCK_LENGTH])
__attribute__((__bounded__(__minbytes__,1,5)))
__attribute__((__bounded__(__minbytes__,2,SHA1_BLOCK_LENGTH)));
void SHA1Update(SHA1_CTX *, const u_int8_t *, size_t)