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