31 lines
691 B
C
31 lines
691 B
C
/* $NetBSD: sha1.h,v 1.2 2003/07/09 01:59:34 kristerw Exp $ */
|
|
|
|
/*
|
|
* SHA-1 in C
|
|
* By Steve Reid <steve@edmweb.com>
|
|
* 100% Public Domain
|
|
*/
|
|
|
|
#ifndef _SHA1_H_
|
|
#define _SHA1_H_
|
|
|
|
#include <sys/types.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[5], const u_char[64]));
|
|
void SHA1Init __P((SHA1_CTX *));
|
|
void SHA1Update __P((SHA1_CTX *, const u_char *, u_int));
|
|
void SHA1Final __P((u_char[20], SHA1_CTX *));
|
|
#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_ */
|