A `crypto.Hash` object is used like below. What happens?const h = crypto.createHash('sha256'); h.update('a'); const d1 = h.digest('hex'); h.update('b'); const d2 = h.digest('hex');