diff options
Diffstat (limited to 'security/digest/files/sha1.h')
-rw-r--r-- | security/digest/files/sha1.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/security/digest/files/sha1.h b/security/digest/files/sha1.h deleted file mode 100644 index 991ab90cf751..000000000000 --- a/security/digest/files/sha1.h +++ /dev/null @@ -1,28 +0,0 @@ -/* $NetBSD: sha1.h,v 1.2 2002/12/21 04:06:15 schmonz Exp $ */ - -/* - * SHA-1 in C - * By Steve Reid <steve@edmweb.com> - * 100% Public Domain - */ - -#ifndef _SYS_SHA1_H_ -#define _SYS_SHA1_H_ - -typedef struct { - u_int32_t state[5]; - u_int32_t count[2]; - u_char buffer[64]; -} SHA1_CTX; - -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, const u_char *data, u_int len)); -void SHA1Final __P((u_char digest[20], SHA1_CTX *context)); -#ifndef _KERNEL -char *SHA1End __P((SHA1_CTX *, char *)); -char *SHA1File __P((char *, char *)); -char *SHA1Data __P((const u_char *, size_t, char *)); -#endif /* _KERNEL */ - -#endif /* _SYS_SHA1_H_ */ |