summaryrefslogtreecommitdiff
path: root/include/sha1.h
Commit message (Collapse)AuthorAgeLines
* includes: move openssl headers to include/u-bootJeroen Hofstee2014-06-19-118/+0
| | | | | | | | | | | | commit 18b06652cd "tools: include u-boot version of sha256.h" unconditionally forced the sha256.h from u-boot to be used for tools instead of the host version. This is fragile though as it will also include the host version. Therefore move it to include/u-boot to join u-boot/md5.h etc which were renamed for the same reason. cc: Simon Glass <sjg@chromium.org> Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
* sha1: Use const where possible, and unsigned for input lenSimon Glass2012-12-11-17/+9
| | | | | | | | In preparation for making the hash function common, we may as well use const where we can. Also the input length cannot be negative, but may be very large, so use unsigned. Signed-off-by: Simon Glass <sjg@chromium.org>
* Add support for calculating hashes with watchdog triggeringBartlomiej Sieka2008-04-25-0/+11
| | | | | | | | | | | | Implement watchodg-aware variants of hash calculation functions: - crc32_wd() - md5_wd() - sha1_csum_wd() The above functions calculate the hash of the input buffer in chunks, triggering the watchdog after processing each chunk. The chunk size is given as a function call parameter. Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
* Coding style cleanup; update CHANGELOG.Wolfgang Denk2007-07-10-25/+25
| | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* [PCS440EP] upgrade the PCS440EP board:Heiko Schocher2007-06-22-0/+115
- Show on the Status LEDs, some States of the board. - Get the MAC addresses from the EEProm - use PREBOOT - use the CF on the board. - check the U-Boot image in the Flash with a SHA1 checksum. - use dynamic TLB entries generation for the SDRAM Signed-off-by: Heiko Schocher <hs@denx.de>