]> Cypherpunks.ru repositories - pygost.git/blob - pygost/stubs/pygost/gost341194.pyi
b495957fb8fe8b3275e9debd396499200e3bf00a
[pygost.git] / pygost / stubs / pygost / gost341194.pyi
1 from pygost.iface import PEP247
2
3
4 class GOST341194(PEP247):
5     def __init__(self, data: bytes=..., sbox: str=...) -> None: ...
6
7     @property
8     def digest_size(self) -> int: ...
9
10     def copy(self) -> "GOST341194": ...
11
12     def update(self, data: bytes) -> None: ...
13
14     def digest(self) -> bytes: ...
15
16     def hexdigest(self) -> str: ...
17
18
19 def new(data: bytes=..., sbox: str=...) -> GOST341194: ...
20
21
22 def pbkdf2(password: bytes, salt: bytes, iterations: int, dklen: int) -> bytes: ...