from pygost.iface import PEP247 class GOST34112012256(PEP247): def __init__(self, data: bytes=...) -> None: ... @property def digest_size(self) -> int: ... def copy(self) -> "GOST34112012256": ... def update(self, data: bytes) -> None: ... def digest(self) -> bytes: ... def hexdigest(self) -> str: ... def new(data: bytes=...) -> GOST34112012256: ...