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