bitwiseXor
Perform bitwise XOR on two binary values.
binary1(required): first operandbinary2(required): second operand (same length)
utlx
{
xored: toHex(bitwiseXor(fromHex("AAFF"), fromHex("55FF")))
}
// Output: {"xored": "ff00"}