AES::PaddingNulls memory leak
LukaszBlasiak opened this issue · 1 comments
LukaszBlasiak commented
Hi,
Thanks for the AES implementation. But in AES::PaddingNulls method I've probably found memory leak and mistake. In AES.CPP at line 121 you create new array and allocate memory for it. In next line you copy input array into it and then do nothing with new array. It cause a memory leak as well because of no memory deallocate.
Regards