diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sha1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sha1.h b/include/sha1.h index cec4aa2eb3b..0e1f225e140 100644 --- a/include/sha1.h +++ b/include/sha1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.h,v 1.7 1997/07/12 20:06:01 millert Exp $ */ +/* $OpenBSD: sha1.h,v 1.8 1997/07/15 01:54:23 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], u_char buffer[64])); +void SHA1Transform __P((u_int32_t state[5], const u_char buffer[64])); void SHA1Init __P((SHA1_CTX *context)); -void SHA1Update __P((SHA1_CTX *context, u_char *data, u_int len)); +void SHA1Update __P((SHA1_CTX *context, const u_char *data, u_int len)); void SHA1Final __P((u_char digest[20], SHA1_CTX *context)); char *SHA1End __P((SHA1_CTX *, char *)); char *SHA1File __P((char *, char *)); |