massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / Crypto / Hash / hashalgo.pyi
1 from typing import Any, Optional\r
2 \r
3 class HashAlgo:\r
4     digest_size = ...  # type: Any\r
5     block_size = ...  # type: Any\r
6     def __init__(self, hashFactory, data: Optional[Any] = ...) -> None: ...\r
7     def update(self, data): ...\r
8     def digest(self): ...\r
9     def hexdigest(self): ...\r
10     def copy(self): ...\r
11     def new(self, data: Optional[Any] = ...): ...\r