mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 21:47:52 +00:00
corrected type mismatch
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user