Files
typeshed/stdlib/2/sha.pyi
2019-10-28 06:59:28 -07:00

12 lines
277 B
Python

# Stubs for Python 2.7 sha stdlib module
class sha(object):
def update(self, arg: str) -> None: ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def copy(self) -> sha: ...
def new(string: str = ...) -> sha: ...
blocksize: int
digest_size: int