aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/sha1.h
blob: bc51ac0c2b20c26d3f51d55762999e09ba4e27e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*	$NetBSD: sha1.h,v 1.13 2005/12/26 18:41:36 perry Exp $	*/

/*
 * SHA-1 in C
 * By Steve Reid <steve@edmweb.com>
 * 100% Public Domain
 */

#ifndef _SYS_SHA1_H_
#define	_SYS_SHA1_H_

#include <sys/cdefs.h>
#include <sys/types.h>

#define SHA1_DIGEST_LENGTH		20
#define SHA1_BLOCK_SIZE 		64

typedef struct {
    uint64_t count;
    uint32_t state[SHA1_DIGEST_LENGTH / 4];
    uint8_t buffer[SHA1_BLOCK_SIZE];
} SHA1_CTX;

__BEGIN_DECLS
void	SHA1Transform(uint32_t[SHA1_DIGEST_LENGTH/4],
	              const uint8_t[SHA1_BLOCK_SIZE]);
void	SHA1Init(SHA1_CTX *);
void	SHA1Update(SHA1_CTX *, const uint8_t *, unsigned int);
void	SHA1Final(uint8_t[SHA1_DIGEST_LENGTH], SHA1_CTX *);
__END_DECLS

#endif /* _SYS_SHA1_H_ */