mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-25 02:23:39 +00:00
[sp: Changed signature for output to use git_oid, and added
a test case to verify an allocated git_hash_ctx can be
reinitialized and reused.]
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
27 lines
588 B
C
27 lines
588 B
C
/*
|
|
* hash.h
|
|
*/
|
|
#ifndef INCLUDE_hash_h__
|
|
#define INCLUDE_hash_h__
|
|
|
|
#include "git/oid.h"
|
|
|
|
typedef struct git_hash_ctx git_hash_ctx;
|
|
|
|
typedef struct {
|
|
void *data;
|
|
size_t len;
|
|
} git_buf_vec;
|
|
|
|
git_hash_ctx *git_hash_new_ctx(void);
|
|
void git_hash_free_ctx(git_hash_ctx *ctx);
|
|
|
|
void git_hash_init(git_hash_ctx *c);
|
|
void git_hash_update(git_hash_ctx *c, const void *data, size_t len);
|
|
void git_hash_final(git_oid *out, git_hash_ctx *c);
|
|
|
|
void git_hash_buf(git_oid *out, const void *data, size_t len);
|
|
void git_hash_vec(git_oid *out, git_buf_vec *vec, size_t n);
|
|
|
|
#endif /* INCLUDE_hash_h__ */
|