diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2005-07-11 08:26:19 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2005-07-11 08:26:19 +0000 |
commit | 2fca1584ba0a0d228e9eebdb4a49736ebc559d79 (patch) | |
tree | 9ee68307d2eab9ae0fd779a9c948af337687751b /security/digest/files/sha1.h | |
parent | Add p5-Algorithm-Bucketizer. (diff) |
- Update to latest NetBSD snapshot
- Use tarball instead of set of files
- Pass maintainership to submitter
PR: ports/83180
Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru>
Approved by: eik MIA
Notes
Notes:
svn path=/head/; revision=138895
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_ */ |