fn blockXor(dst: []align(16) u32, src: []align(16) const u32, n: usize) void
fn blockXor(dst: []align(16) u32, src: []align(16) const u32, n: usize) void { for (src[0 .. n * 16], 0..) |v, i| { dst[i] ^= v; } }