prf-plus: Wipe seed and internal buffer

The buffer contains key material we handed out last and the seed can
contain the DH secret.

References #2388.
This commit is contained in:
Tobias Brunner 2017-07-25 10:15:58 +02:00
parent 32e5c49234
commit e0c78d7516
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ METHOD(prf_plus_t, allocate_bytes, bool,
METHOD(prf_plus_t, destroy, void,
private_prf_plus_t *this)
{
free(this->buffer.ptr);
free(this->seed.ptr);
chunk_clear(&this->buffer);
chunk_clear(&this->seed);
free(this);
}