After calling hash.digest() once on a crypto Hash object, what happens if you call hash.update() again?const h = crypto.createHash('sha256'); h.update('hello'); h.digest('hex'); h.update('world');