upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
567 B
24 lines
567 B
/*
|
|
* Copyright (c) 2013, Andreas Oetken.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _RSA_CHECKSUM_H
|
|
#define _RSA_CHECKSUM_H
|
|
|
|
#include <errno.h>
|
|
#include <image.h>
|
|
#include <sha1.h>
|
|
#include <sha256.h>
|
|
|
|
extern const uint8_t padding_sha256_rsa4096[];
|
|
extern const uint8_t padding_sha256_rsa2048[];
|
|
extern const uint8_t padding_sha1_rsa2048[];
|
|
|
|
void sha256_calculate(const struct image_region region[], int region_count,
|
|
uint8_t *checksum);
|
|
void sha1_calculate(const struct image_region region[], int region_count,
|
|
uint8_t *checksum);
|
|
|
|
#endif
|
|
|