How to do bitwise XOR operation to two strings in java.
|
|
I would do an XOR each charAt() to create a new String. Like
In response to @user467257's comment
It is the
prints
|
|||||||||||||||
|
|
Pay attention: A Java XORing two valid UTF-16 sequences (i.e. Java Strings The same is valid if you first convert your Strings to UTF-8 and then XOR these bytes - here you quite probably will end up with a byte sequence which is not valid UTF-8, if your Strings were not already both pure ASCII strings. Even if you try to do it right and iterate over your two Strings by codepoint and try to XOR the codepoints, you can end up with codepoints outside the valid range (for example, If your strings only contain chars < 128, 256, 512, 1024, 2048, 4096, 8192, 16384, or 32768, then the (char-wise) XORed strings will be in the same range, and thus certainly not contain any surrogates. In the first two cases you could also encode your String as ASCII or Latin-1, respectively, and have the same XOR-result for the bytes. (You still can end up with control chars, which may be a problem for you.) What I'm finally saying here: don't expect the result of encrypting Strings to be a valid string again - instead, simply store and transmit it as a |
|||||||||||
|
|
You want something like this:
The base64 encoding is done because xor'ing the bytes of a string may not give valid bytes back for a string. |
|||
|
|
|
Assuming (!) the strings are of equal length, why not convert the strings to byte arrays and then XOR the bytes. The resultant byte arrays may be of different lengths too depending on your encoding (e.g. UTF8 will expand to different byte lengths for different characters). You should be careful to specify the character encoding to ensure consistent/reliable string/byte conversion. |
|||||||||||||||||||
|
|
This is the code I'm using:
|
|||
|
|