summaryrefslogtreecommitdiff
path: root/chip/host/dcrypto/app_cipher.c
blob: 69d54a41b1790afd08977d732ee3843f59c06d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Copyright 2018 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "dcrypto.h"
#include "util.h"

void app_compute_hash(uint8_t *p_buf, size_t num_bytes,
		      uint8_t *p_hash, size_t hash_len)
{
	uint8_t digest[SHA256_DIGEST_SIZE];

	/*
	 * Use the built in dcrypto engine to generate the sha1 hash of the
	 * buffer.
	 */
	DCRYPTO_SHA256_hash((uint8_t *)p_buf, num_bytes, digest);

	memcpy(p_hash, digest, MIN(hash_len, sizeof(digest)));

	if (hash_len > sizeof(digest))
		memset(p_hash + sizeof(digest), 0,
		       hash_len - sizeof(digest));
}

int app_cipher(const void *salt_p, void *out_p, const void *in_p, size_t size)
{
	/* See README.md for while this is a passthrough. */
	memcpy(out_p, in_p, size);
	return 1;
}

int crypto_enabled(void)
{
	return 1;
}