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-08-07 16:55:28 +02:00
parent 32e5c49234
commit e0c78d7516
+2 -2
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);
}