// XOR import "utils/binary/xor.code" as XOR def main(field[32] b, field[32] c) -> (field[32]): field[32] result = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] for field i in 0..32 do r = XOR(b[i], c[i]) result[i] = r endfor return result