Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Lua

Idiom #238 Xor byte arrays

Write in a new byte array c the xor result of byte arrays a and b.

a and b have the same size.

local c = {}
for i=1,#a do
	c[i] = string.char(string.byte(a, i) ~ string.byte(b, i))
end
c = table.concat(c)

Uses strings as byte arrays, since Lua strings are raw bytes.
Creates c as a table, appends to it, and concats it into a string, because appending to a string means rehashing it every time, which becomes a real problem for large strings.
#include <array>
#include <cstddef>
std::array<std::byte, a.size()> c;
for (auto ia = a.begin(), ib = b.begin(); auto & rc : c) {
  rc = *ia++ ^ *ib++;
}

std::byte xor operator requires C++17.
range for init-statement  requires C++20.

New implementation...
< >
programming-idioms.org