From c2b89979c9bca7dad7db55a659893c635ea1f009 Mon Sep 17 00:00:00 2001 From: jakcron Date: Fri, 20 Nov 2015 15:07:58 +0800 Subject: [PATCH] [makerom] Fixes issue #11 --- makerom/polarssl/aes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makerom/polarssl/aes.c b/makerom/polarssl/aes.c index 8d8ebb6..7c1f0fd 100644 --- a/makerom/polarssl/aes.c +++ b/makerom/polarssl/aes.c @@ -774,7 +774,7 @@ int aes_crypt_ecb( aes_context *ctx, */ int aes_crypt_cbc( aes_context *ctx, int mode, - size_t length, + uint64_t length, unsigned char iv[16], const unsigned char *input, unsigned char *output )