blob: ddb1dc055fcce194ac66e7cc7b8ca1e2ece4fdd6 [file] [log] [blame]
Gaurav Shah322536d2010-01-28 15:01:23 -08001/* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6/* Helper functions/wrappers for memory allocations, manipulation and
7 * comparison.
8 */
9
10#ifndef VBOOT_REFERENCE_UTILITY_H_
11#define VBOOT_REFERENCE_UTILITY_H_
12
13#include <string.h>
14
15/* Allocate [size] bytes and return a pointer to the allocated memory. Abort
16 * on error.
17 */
18void* Malloc(size_t size);
19
20/* Free memory pointed by [ptr] previously allocated by Malloc(). */
21void Free(void* ptr);
22
23/* Copy [n] bytes from [src] to [dest]. */
24void* Memcpy(void* dest, const void* src, size_t n);
25
26/* Compare [n] bytes starting at [s1] with [s2] and return 1 if they match,
27 * 0 if they don't. Time taken to perform the comparison is only dependent on
28 * [n] and not on the relationship of the match between [s1] and [s2].
29 */
30int SafeMemcmp(const void* s1, const void* s2, size_t n);
31
32#endif /* VBOOT_REFERENCE_UTILITY_H_ */