Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1743)

Unified Diff: src/platform/vboot_reference/crypto/sha_utility.c

Issue 744002: Vboot Reference: Make length types explicitly sized. (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/platform/vboot_reference/crypto/sha_utility.c
diff --git a/src/platform/vboot_reference/crypto/sha_utility.c b/src/platform/vboot_reference/crypto/sha_utility.c
index e4c5e370510ad0b8002f9c824c1d852e275d3acf..1478a7a4fa3406c25a01d921955477ef9e7bc9c0 100644
--- a/src/platform/vboot_reference/crypto/sha_utility.c
+++ b/src/platform/vboot_reference/crypto/sha_utility.c
@@ -51,7 +51,7 @@ void DigestInit(DigestContext* ctx, int sig_algorithm) {
};
}
-void DigestUpdate(DigestContext* ctx, const uint8_t* data, int len) {
+void DigestUpdate(DigestContext* ctx, const uint8_t* data, uint64_t len) {
switch(ctx->algorithm) {
case SHA1_DIGEST_ALGORITHM:
SHA1_update(ctx->sha1_ctx, data, len);
@@ -108,12 +108,12 @@ uint8_t* DigestFile(char* input_file, int sig_algorithm) {
return digest;
}
-uint8_t* DigestBuf(const uint8_t* buf, int len, int sig_algorithm) {
+uint8_t* DigestBuf(const uint8_t* buf, uint64_t len, int sig_algorithm) {
uint8_t* digest = (uint8_t*) Malloc(SHA512_DIGEST_SIZE); /* Use the max. */
/* Define an array mapping [sig_algorithm] to function pointers to the
* SHA{1|256|512} functions.
*/
- typedef uint8_t* (*Hash_ptr) (const uint8_t*, int, uint8_t*);
+ typedef uint8_t* (*Hash_ptr) (const uint8_t*, uint64_t, uint8_t*);
Hash_ptr hash[] = {
SHA1, /* RSA 1024 */
SHA256,

Powered by Google App Engine
This is Rietveld 408576698