mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-25 10:45:02 +00:00
26 lines
656 B
C
26 lines
656 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.
|
|
*
|
|
* Host-side misc functions for verified boot.
|
|
*/
|
|
|
|
#ifndef VBOOT_REFERENCE_HOST_MISC_H_
|
|
#define VBOOT_REFERENCE_HOST_MISC_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "host_misc.h"
|
|
#include "utility.h"
|
|
#include "vboot_struct.h"
|
|
|
|
|
|
/* Read data from [filename]. Store the size of returned data in [size].
|
|
*
|
|
* Returns the data buffer, which the caller must Free(), or NULL if
|
|
* error. */
|
|
uint8_t* ReadFile(const char* filename, uint64_t* size);
|
|
|
|
|
|
#endif /* VBOOT_REFERENCE_HOST_MISC_H_ */
|