csum-file.h 640 字节
Newer Older
1 2 3
#ifndef CSUM_FILE_H
#define CSUM_FILE_H

N
Nicolas Pitre 已提交
4 5
struct progress;

6 7
/* A SHA1-protected file */
struct sha1file {
8 9
	int fd;
	unsigned int offset;
10
	SHA_CTX ctx;
11
	off_t total;
N
Nicolas Pitre 已提交
12
	struct progress *tp;
13
	const char *name;
14 15
	int do_crc;
	uint32_t crc32;
16 17 18
	unsigned char buffer[8192];
};

19
extern struct sha1file *sha1fd(int fd, const char *name);
N
Nicolas Pitre 已提交
20
extern struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp);
21
extern int sha1close(struct sha1file *, unsigned char *, int);
22
extern int sha1write(struct sha1file *, void *, unsigned int);
23 24
extern void crc32_begin(struct sha1file *);
extern uint32_t crc32_end(struct sha1file *);
25 26

#endif