def keccak256(prehash: bytes) -> bytes: return _keccak_256(prehash).digest()
def keccak256(self, prehash: Union[bytearray, bytes]) -> bytes: return _keccak_256(prehash).digest() # type: ignore
def __init__(self, prehash) -> None: self._hash = _keccak_256(prehash)
def keccak_256(b: bytes) -> bytes: h = _keccak_256() h.update(b) return h.digest()