massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / _sha.pyi
1 blocksize = ...  # type: int\r
2 block_size = ...  # type: int\r
3 digest_size = ...  # type: int\r
4 \r
5 class sha(object):  # not actually exposed\r
6     name = ...  # type: str\r
7     block_size = ...  # type: int\r
8     digest_size = ...  # type: int\r
9     digestsize = ...  # type: int\r
10     def copy(self) -> "sha": ...\r
11     def digest(self) -> str: ...\r
12     def hexdigest(self) -> str: ...\r
13     def update(self, arg: str) -> None: ...\r
14 \r
15 def new(arg: str = ...) -> sha: ...\r