hash.h 1.07 KB
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
 */
#ifndef INCLUDE_hash_h__
#define INCLUDE_hash_h__

10
#include "git2/oid.h"
11

12
typedef struct git_hash_prov git_hash_prov;
13 14
typedef struct git_hash_ctx git_hash_ctx;

15
int git_hash_global_init(void);
16 17 18
int git_hash_ctx_init(git_hash_ctx *ctx);
void git_hash_ctx_cleanup(git_hash_ctx *ctx);

19 20 21
#if defined(GIT_COMMON_CRYPTO)
# include "hash/hash_common_crypto.h"
#elif defined(OPENSSL_SHA1)
22 23 24 25 26 27 28
# include "hash/hash_openssl.h"
#elif defined(WIN32_SHA1)
# include "hash/hash_win32.h"
#else
# include "hash/hash_generic.h"
#endif

29 30 31 32 33
typedef struct {
	void *data;
	size_t len;
} git_buf_vec;

34
int git_hash_init(git_hash_ctx *c);
35 36
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);
37

38 39
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);
40 41

#endif /* INCLUDE_hash_h__ */