ccm: Make sure to wipe salt

This commit is contained in:
Tobias Brunner 2023-07-11 11:34:48 +02:00
parent 0abb37b830
commit 9bda4a4415

View File

@ -338,6 +338,7 @@ METHOD(aead_t, destroy, void,
{
this->crypter->destroy(this->crypter);
this->iv_gen->destroy(this->iv_gen);
memwipe(this->salt, sizeof(this->salt));
free(this);
}