OS X build fixes

This commit is contained in:
Jack Andersen
2015-07-08 14:57:51 -10:00
parent e1f46b824f
commit 916515f0d7
2 changed files with 6 additions and 4 deletions

View File

@@ -400,7 +400,7 @@ void SoftwareAES::setKey(const uint8_t* key)
}
// CBC mode decryption
void SoftwareAES::decrypt(const uint8_t* iv, const uint8_t* inbuf, uint8_t* outbuf, size_t len)
void SoftwareAES::decrypt(const uint8_t* iv, const uint8_t* inbuf, uint8_t* outbuf, uint64_t len)
{
uint8_t block[16];
const uint8_t* ctext_ptr;