Add pygost deps

This commit is contained in:
Ivan Vazhenin
2023-08-30 19:10:53 +03:00
parent a90f60153a
commit a440d30b12
129 changed files with 20529 additions and 0 deletions
@@ -0,0 +1,24 @@
from pygost.iface import PEP247
class GOST34112012512(PEP247):
block_size = ... # type: int
def __init__(self, data: bytes = ...) -> None: ...
@property
def digest_size(self) -> int: ...
def copy(self) -> "GOST34112012512": ...
def update(self, data: bytes) -> None: ...
def digest(self) -> bytes: ...
def hexdigest(self) -> str: ...
def new(data: bytes = ...) -> GOST34112012512: ...
def pbkdf2(password: bytes, salt: bytes, iterations: int, dklen: int) -> bytes: ...