1234567891011121314151617181920212223242526272829 |
- #ifndef _RSA_CHECKSUM_H
- #define _RSA_CHECKSUM_H
- #include <errno.h>
- #include <image.h>
- #include <u-boot/sha1.h>
- #include <u-boot/sha256.h>
- int hash_calculate(const char *name,
- const struct image_region region[], int region_count,
- uint8_t *checksum);
- #endif
|