corrected type mismatch

This commit is contained in:
Jack Andersen 2015-07-21 09:26:02 -10:00
parent c6a6d3b9c4
commit 78286b0f67
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,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;