Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumNodeJScrypto hashing signingSingle-choice MCQ

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');