_hmac.pyi 196 B

123456
  1. class HMAC:
  2. def new(self, key:any, msg:any, digestmod:str): ...
  3. def update(self, msg:any): ...
  4. def digest(self) -> any: ...
  5. def hexdigest(self) -> str: ...
  6. def copy(self): ...