/src/libgit2/src/util/hash/builtin.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright (C) the libgit2 contributors. All rights reserved. |
3 | | * |
4 | | * This file is part of libgit2, distributed under the GNU GPL v2 with |
5 | | * a Linking Exception. For full terms see the included COPYING file. |
6 | | */ |
7 | | |
8 | | #include "builtin.h" |
9 | | |
10 | | int git_hash_sha256_global_init(void) |
11 | 16 | { |
12 | 16 | return 0; |
13 | 16 | } |
14 | | |
15 | | int git_hash_sha256_ctx_init(git_hash_sha256_ctx *ctx) |
16 | 24 | { |
17 | 24 | return git_hash_sha256_init(ctx); |
18 | 24 | } |
19 | | |
20 | | void git_hash_sha256_ctx_cleanup(git_hash_sha256_ctx *ctx) |
21 | 24 | { |
22 | 24 | GIT_UNUSED(ctx); |
23 | 24 | } |
24 | | |
25 | | int git_hash_sha256_init(git_hash_sha256_ctx *ctx) |
26 | 24 | { |
27 | 24 | GIT_ASSERT_ARG(ctx); |
28 | 24 | if (SHA256Reset(&ctx->c)) { |
29 | 0 | git_error_set(GIT_ERROR_SHA, "SHA256 error"); |
30 | 0 | return -1; |
31 | 0 | } |
32 | 24 | return 0; |
33 | 24 | } |
34 | | |
35 | | int git_hash_sha256_update(git_hash_sha256_ctx *ctx, const void *_data, size_t len) |
36 | 24 | { |
37 | 24 | const unsigned char *data = _data; |
38 | 24 | GIT_ASSERT_ARG(ctx); |
39 | | |
40 | 40 | while (len > 0) { |
41 | 16 | unsigned int chunk = (len > UINT_MAX) ? UINT_MAX : (unsigned int)len; |
42 | | |
43 | 16 | if (SHA256Input(&ctx->c, data, chunk)) { |
44 | 0 | git_error_set(GIT_ERROR_SHA, "SHA256 error"); |
45 | 0 | return -1; |
46 | 0 | } |
47 | | |
48 | 16 | data += chunk; |
49 | 16 | len -= chunk; |
50 | 16 | } |
51 | | |
52 | 24 | return 0; |
53 | 24 | } |
54 | | |
55 | | int git_hash_sha256_final(unsigned char *out, git_hash_sha256_ctx *ctx) |
56 | 12 | { |
57 | 12 | GIT_ASSERT_ARG(ctx); |
58 | 12 | if (SHA256Result(&ctx->c, out)) { |
59 | 0 | git_error_set(GIT_ERROR_SHA, "SHA256 error"); |
60 | 0 | return -1; |
61 | 0 | } |
62 | 12 | return 0; |
63 | 12 | } |