]> Cypherpunks.ru repositories - pygost.git/blob - pygost/stubs/pygost/gost34112012256.pyi
PEP8 typing stubs
[pygost.git] / pygost / stubs / pygost / gost34112012256.pyi
1 from pygost.iface import PEP247
2
3
4 class GOST34112012256(PEP247):
5     block_size = ...  # type: int
6
7     def __init__(self, data: bytes = ...) -> None: ...
8
9     @property
10     def digest_size(self) -> int: ...
11
12     def copy(self) -> "GOST34112012256": ...
13
14     def update(self, data: bytes) -> None: ...
15
16     def digest(self) -> bytes: ...
17
18     def hexdigest(self) -> str: ...
19
20
21 def new(data: bytes = ...) -> GOST34112012256: ...