blob: 02b814d34e32e9a805af6ec3e449b3187c0fb961 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocheredaf9b12014-03-03 12:19:26 +01002/*
3 * Copyright (c) 2013, Andreas Oetken.
Tom Rini10e47792018-05-06 17:58:06 -04004 */
Heiko Schocheredaf9b12014-03-03 12:19:26 +01005
6#ifndef _RSA_CHECKSUM_H
7#define _RSA_CHECKSUM_H
8
9#include <errno.h>
10#include <image.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020011#include <u-boot/sha1.h>
12#include <u-boot/sha256.h>
Heiko Schocheredaf9b12014-03-03 12:19:26 +010013
Ruchika Gupta2c8987f2015-01-23 16:01:59 +053014/**
15 * hash_calculate() - Calculate hash over the data
16 *
17 * @name: Name of algorithm to be used for hash calculation
18 * @region: Array having info of regions over which hash needs to be calculated
19 * @region_count: Number of regions in the region array
20 * @checksum: Buffer contanining the output hash
21 *
22 * @return 0 if OK, < 0 if error
23 */
24int hash_calculate(const char *name,
25 const struct image_region region[], int region_count,
26 uint8_t *checksum);
Heiko Schocheredaf9b12014-03-03 12:19:26 +010027
28#endif