i would like to do bitwise exclusive or of words in python but xor of strings are not allowed in python . so how to do it ?
|
|
You can convert the characters to integers and xor those instead:
Here's an updated function in case you need a string as a result of the XOR:
See it working online: ideone |
|||||
|
|
If you want to operate on bytes or words then you'll be better to use Python's array type instead of a string. If you are working with fixed length blocks then you may be able to use H or L format to operate on words rather than bytes, but I just used 'B' for this example:
|
|||||
|
|
Here is your string XOR'er, presumably for some mild form of encryption:
Note that this is an extremely weak form of encryption. Watch what happens when given a blank string to encode:
|
|||
|
|
|
Do you mean something like this:
|
|||
|
(Based on Mark Byers answer.) |
|||
|
|
|||
|
|
|
For bytearrays you can directly use XOR:
|
|||
|
|
|
Below illustrates XORing string s with m, and then again to reverse the process:
|
|||
|
|