Files
typeshed/stdlib/2.7/hmac.pyi
2015-11-09 13:55:02 -08:00

12 lines
280 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 = ..., digestmod: Any = ...) -> HMAC: ...