ID EN
Hashlib

update

Python 3.11

Update the hash object with the bytes-like object. Repeated calls are equivalent to a single call with the concatenation of all the arguments: m.update(a); m.update(b) is equivalent to m.update(a+b).

Syntax

PYTHON
hash.update(data)

See Also

bytes-like object