Files
typeshed/stdlib/2.7/hmac.pyi
2015-09-30 09:59:44 -07:00

12 lines
282 B
Python

# Stubs for hmac (Python 2)
from typing import Any
class HMAC:
def update(self, msg: str) -> None: ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def copy(self) -> HMAC: ...
def new(key: str, msg: str = None, digestmod: Any = None) -> HMAC: ...