ObjFW  Diff

Differences From Artifact [4636315b6a]:

To Artifact [139ebf49f1]:


209
210
211
212
213
214
215














216
	return (const uint8_t*)_state;
}

- (bool)isCalculated
{
	return _calculated;
}














@end







>
>
>
>
>
>
>
>
>
>
>
>
>
>

209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
	return (const uint8_t*)_state;
}

- (bool)isCalculated
{
	return _calculated;
}

- (void)reset
{
	[self OF_resetState];
	memset(&_bits, 0, sizeof(_bits));
	memset(&_buffer, 0, sizeof(_buffer));
	_bufferLength = 0;
	_calculated = false;
}

- (void)OF_resetState
{
	OF_UNRECOGNIZED_SELECTOR
}
@end