mirror of https://github.com/libAthena/athena.git
corrected type mismatch
This commit is contained in:
parent
c6a6d3b9c4
commit
78286b0f67
|
@ -396,7 +396,7 @@ void SoftwareAES::setKey(const uint8_t* key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CBC mode decryption
|
// 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];
|
uint8_t block[16];
|
||||||
const uint8_t* ctext_ptr;
|
const uint8_t* ctext_ptr;
|
||||||
|
|
Loading…
Reference in New Issue