Coverage Report

Created: 2026-02-26 06:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libgit2/src/util/hash/builtin.c
Line
Count
Source
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
2
{
12
2
  return 0;
13
2
}
14
15
int git_hash_sha256_ctx_init(git_hash_sha256_ctx *ctx)
16
0
{
17
0
  return git_hash_sha256_init(ctx);
18
0
}
19
20
void git_hash_sha256_ctx_cleanup(git_hash_sha256_ctx *ctx)
21
0
{
22
0
  GIT_UNUSED(ctx);
23
0
}
24
25
int git_hash_sha256_init(git_hash_sha256_ctx *ctx)
26
0
{
27
0
  GIT_ASSERT_ARG(ctx);
28
0
  if (SHA256Reset(&ctx->c)) {
29
0
    git_error_set(GIT_ERROR_SHA, "SHA256 error");
30
0
    return -1;
31
0
  }
32
0
  return 0;
33
0
}
34
35
int git_hash_sha256_update(git_hash_sha256_ctx *ctx, const void *_data, size_t len)
36
0
{
37
0
  const unsigned char *data = _data;
38
0
  GIT_ASSERT_ARG(ctx);
39
40
0
  while (len > 0) {
41
0
    unsigned int chunk = (len > UINT_MAX) ? UINT_MAX : (unsigned int)len;
42
43
0
    if (SHA256Input(&ctx->c, data, chunk)) {
44
0
      git_error_set(GIT_ERROR_SHA, "SHA256 error");
45
0
      return -1;
46
0
    }
47
48
0
    data += chunk;
49
0
    len -= chunk;
50
0
  }
51
52
0
  return 0;
53
0
}
54
55
int git_hash_sha256_final(unsigned char *out, git_hash_sha256_ctx *ctx)
56
0
{
57
0
  GIT_ASSERT_ARG(ctx);
58
0
  if (SHA256Result(&ctx->c, out)) {
59
0
    git_error_set(GIT_ERROR_SHA, "SHA256 error");
60
0
    return -1;
61
0
  }
62
0
  return 0;
63
0
}