Add a return value to hasher_t.reset()

This commit is contained in:
Martin Willi
2012-07-16 14:55:06 +02:00
parent 87dd205b61
commit e3b2e900e6
12 changed files with 91 additions and 68 deletions
@@ -99,10 +99,11 @@ METHOD(hasher_t, get_hash_size, size_t,
return this->size;
}
METHOD(hasher_t, reset, void,
METHOD(hasher_t, reset, bool,
private_af_alg_hasher_t *this)
{
this->ops->reset(this->ops);
return TRUE;
}
METHOD(hasher_t, get_hash, bool,