hash.h 995 Bytes
Newer Older
1
/*
Edward Thomson committed
2
 * Copyright (C) the libgit2 contributors. All rights reserved.
Vicent Marti committed
3 4 5
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
6
 */
7

8 9 10
#ifndef INCLUDE_hash_h__
#define INCLUDE_hash_h__

11 12
#include "common.h"

13
#include "git2/oid.h"
14

15 16 17 18
typedef struct {
	void *data;
	size_t len;
} git_buf_vec;
19

20 21 22 23 24
typedef enum {
	GIT_HASH_ALGO_UNKNOWN = 0,
	GIT_HASH_ALGO_SHA1,
} git_hash_algo_t;

25
#include "hash/sha1.h"
26

27 28 29 30
typedef struct git_hash_ctx {
	union {
		git_hash_sha1_ctx sha1;
	};
31
	git_hash_algo_t algo;
32 33
} git_hash_ctx;

34 35 36 37
int git_hash_global_init(void);

int git_hash_ctx_init(git_hash_ctx *ctx);
void git_hash_ctx_cleanup(git_hash_ctx *ctx);
38

39
int git_hash_init(git_hash_ctx *c);
40 41
int git_hash_update(git_hash_ctx *c, const void *data, size_t len);
int git_hash_final(git_oid *out, git_hash_ctx *c);
42

43 44
int git_hash_buf(git_oid *out, const void *data, size_t len);
int git_hash_vec(git_oid *out, git_buf_vec *vec, size_t n);
45

46
#endif