mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 02:05:01 +00:00
At this point, all that's left are a few constants in the cryptolib header files, and they're only used by host-side code. So move them to a host-side header file and get rid of cryptolib. BUG=chromium:611535 BRANCH=none TEST=make runtests; emerge-kevin coreboot depthcharge Change-Id: I2235f0e84e13fef313afe54e749b73744b157884 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/400903 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
21 lines
691 B
C
21 lines
691 B
C
/* Copyright (c) 2010 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.
|
|
*
|
|
* Utility functions for file and key handling.
|
|
*/
|
|
|
|
#ifndef VBOOT_REFERENCE_FILE_KEYS_H_
|
|
#define VBOOT_REFERENCE_FILE_KEYS_H_
|
|
|
|
#include "2sha.h"
|
|
|
|
/* Calculates the appropriate digest for the data in [input_file] based on the
|
|
* hash algorithm [alg] and stores it into [digest], which is of size
|
|
* [digest_size]. Returns VB2_SUCCESS, or non-zero on error.
|
|
*/
|
|
int DigestFile(char *input_file, enum vb2_hash_algorithm alg,
|
|
uint8_t *digest, uint32_t digest_size);
|
|
|
|
#endif /* VBOOT_REFERENCE_FILE_KEYS_H_ */
|