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

13 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 = None) -> sha: ...
blocksize = 0
digest_size = 0