Is it possible to "continue" a hash in PHP? Say for example I start hashing a large chuck of data like this:
$ctx = hash_init('sha1');
hash_update($ctx, $data_block);
$hash = hash_final($ctx);
That's all well and good but suppose the data is not fully available at that point and I want to "pause" the hashing mid-way and save where we're up to and then finish processing later. Is this possible?
Thanks, J