klyn.cryptography.MessageDigest.reset
method
public reset() as Void:
Description
Resets the buffered text accumulated with `update`.
import klyn.cryptography

md = SHA256()
md.update("hello")
md.reset()
print(md.digestInfo("").hex)