add _sha512.pyi

This commit is contained in:
Matthias Kramm
2015-09-21 14:17:59 -07:00
parent 585d04ca27
commit 95d83049a1

19
builtins/2.7/_sha512.pyi Normal file
View File

@@ -0,0 +1,19 @@
class sha384(object):
name = ... # type: str
block_size = ... # type: int
digest_size = ... # type: int
digestsize = ... # type: int
def copy(self) -> "sha384": ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def update(self, arg: str) -> None: ...
class sha512(object):
name = ... # type: str
block_size = ... # type: int
digest_size = ... # type: int
digestsize = ... # type: int
def copy(self) -> "sha512": ...
def digest(self) -> str: ...
def hexdigest(self) -> str: ...
def update(self, arg: str) -> None: ...