X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=blobdiff_plain;f=pygost%2Fstubs%2Fpygost%2Fgost28147.pyi;h=be3126137c5224c605f7c44a04f3c81da63e624a;hp=0c513e0a4e7e3d3c4fe77b2b8e728d247a65409a;hb=61d68bda6f6d7c39243701b5f647f62cc4d9d286;hpb=e25e0007c0434340dbaf44c11f3ccda03f666e23 diff --git a/pygost/stubs/pygost/gost28147.pyi b/pygost/stubs/pygost/gost28147.pyi index 0c513e0..be31261 100644 --- a/pygost/stubs/pygost/gost28147.pyi +++ b/pygost/stubs/pygost/gost28147.pyi @@ -38,64 +38,64 @@ def ecb( key: bytes, data: bytes, action: Callable[[str, bytes, Words], Words], - sbox: str=..., + sbox: str = ..., ) -> bytes: ... def ecb_encrypt( key: bytes, data: bytes, - sbox: str=..., + sbox: str = ..., ) -> bytes: ... def ecb_decrypt( key: bytes, data: bytes, - sbox: str=..., + sbox: str = ..., ) -> bytes: ... def cbc_encrypt( key: bytes, data: bytes, - iv: bytes=..., - pad: bool=..., - sbox: str=..., - mesh: bool=..., + iv: bytes = ..., + pad: bool = ..., + sbox: str = ..., + mesh: bool = ..., ) -> bytes: ... def cbc_decrypt( key: bytes, data: bytes, - pad: bool=..., - sbox: str=..., - mesh: bool=..., + pad: bool = ..., + sbox: str = ..., + mesh: bool = ..., ) -> bytes: ... def cnt( key: bytes, data: bytes, - iv: bytes=..., - sbox: str=..., + iv: bytes = ..., + sbox: str = ..., ) -> bytes: ... def cfb_encrypt( key: bytes, data: bytes, - iv: bytes=..., - sbox: str=..., - mesh: bool=..., + iv: bytes = ..., + sbox: str = ..., + mesh: bool = ..., ) -> bytes: ... def cfb_decrypt( key: bytes, data: bytes, - iv: bytes=..., - sbox: str=..., - mesh: bool=..., + iv: bytes = ..., + sbox: str = ..., + mesh: bool = ..., ) -> bytes: ...