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