Is there any python packages for adding byte arrays together just like adding binary strings together.
For instance:
"0011" + "0101" = "0110"
but only with bytes.
I tried to convert the bytes to strings but its too much work for the computer. It would be easier to just add bytes together.
Bytearray1["10000011", "00000000"]
+
Bytearray2["10000101", "00000000"]
=
Bytearray3["00000110", "00000001"]