Logo

Programming-Idioms

  • Go
  • Fortran

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.

use iso_fortran_env, only : int8
integer(kind=int8), dimension(:) :: a, b, c
! Assign values to a and b
c = ieor(a,b)

This uses the int8 constant which is the kind number for a byte.
c is allocated on assignment.
c := make([]byte, len(a))
for i := range a {
	c[i] = a[i] ^ b[i]
}

Byte slices []byte are more idiomatic than arrays.
var c T
for i := range a {
	c[i] = a[i] ^ b[i]
}

T is a fixed-sized array type, e.g. [5]byte.
#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