klyn.cryptography.MessageDigest.update
method
public update(text as String) as MessageDigest:
DescriptionAppends text to the in-memory digest buffer.
import klyn.cryptography
md = SHA256()
md.update("hel")
md.update("lo")
print(md.digestInfo().hex)
ReturnsThis digest instance. ```klyn import klyn.cryptography md = SHA256() md.update("hel") md.update("lo") print(md.digestInfo().hex) ```