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

mac = Hmac(SHA256())
mac.init("secret")
mac.update("hello")
mac.reset()
print(mac.doFinal("").hex)