mbedtls.c 1.68 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

8
#include "mbedtls.h"
9

10 11
#ifdef GIT_SHA1_MBEDTLS

12
int git_hash_sha1_global_init(void)
13 14 15 16
{
	return 0;
}

17
int git_hash_sha1_ctx_init(git_hash_sha1_ctx *ctx)
18
{
19
	return git_hash_sha1_init(ctx);
20 21
}

22
void git_hash_sha1_ctx_cleanup(git_hash_sha1_ctx *ctx)
23
{
Edward Thomson committed
24 25
	if (ctx)
		mbedtls_sha1_free(&ctx->c);
26 27
}

28
int git_hash_sha1_init(git_hash_sha1_ctx *ctx)
29
{
Edward Thomson committed
30 31 32 33
	GIT_ASSERT_ARG(ctx);
	mbedtls_sha1_init(&ctx->c);
	mbedtls_sha1_starts(&ctx->c);
	return 0;
34 35
}

36
int git_hash_sha1_update(git_hash_sha1_ctx *ctx, const void *data, size_t len)
37
{
Edward Thomson committed
38 39 40
	GIT_ASSERT_ARG(ctx);
	mbedtls_sha1_update(&ctx->c, data, len);
	return 0;
41 42
}

43
int git_hash_sha1_final(unsigned char *out, git_hash_sha1_ctx *ctx)
44
{
Edward Thomson committed
45
	GIT_ASSERT_ARG(ctx);
46
	mbedtls_sha1_finish(&ctx->c, out);
Edward Thomson committed
47
	return 0;
48
}
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92

#endif

#ifdef GIT_SHA256_MBEDTLS

int git_hash_sha256_global_init(void)
{
	return 0;
}

int git_hash_sha256_ctx_init(git_hash_sha256_ctx *ctx)
{
	return git_hash_sha256_init(ctx);
}

void git_hash_sha256_ctx_cleanup(git_hash_sha256_ctx *ctx)
{
	if (ctx)
		mbedtls_sha256_free(&ctx->c);
}

int git_hash_sha256_init(git_hash_sha256_ctx *ctx)
{
	GIT_ASSERT_ARG(ctx);
	mbedtls_sha256_init(&ctx->c);
	mbedtls_sha256_starts(&ctx->c, 0);
	return 0;
}

int git_hash_sha256_update(git_hash_sha256_ctx *ctx, const void *data, size_t len)
{
	GIT_ASSERT_ARG(ctx);
	mbedtls_sha256_update(&ctx->c, data, len);
	return 0;
}

int git_hash_sha256_final(unsigned char *out, git_hash_sha256_ctx *ctx)
{
	GIT_ASSERT_ARG(ctx);
	mbedtls_sha256_finish(&ctx->c, out);
	return 0;
}

#endif