8 lines
148 B
Python
Raw Normal View History

2022-11-19 18:41:31 +08:00
import _hmac
def new(key:any, msg=None, digestmod="md5") -> _hmac.HMAC:
2022-11-19 18:41:31 +08:00
hmac = _hmac.HMAC()
hmac.new(key, msg, digestmod)
return hmac