summaryrefslogtreecommitdiff
path: root/board/cr50/dcrypto/sha512.c
blob: 1446970174b90377311ff55fe892d46c64db6eeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright 2016 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 "internal.h"

#include "cryptoc/sha512.h"

void DCRYPTO_SHA512_init(LITE_SHA512_CTX *ctx)
{
	SHA512_init(ctx);
}

const uint8_t *DCRYPTO_SHA512_hash(const void *data, uint32_t n,
				uint8_t *digest)
{
	return SHA512_hash(data, n, digest);
}