from "hashes/keccak/keccak" import main as keccak;
def main<N>(u8[N] input) -> u8[64] {
return keccak::<_, 64>(input, 0x01);
}