Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the cause of certain characters to be blank when using XOR encryption? Furthermore, how can this be compensated for when decrypting?

For instance:

....
void basic_encrypt(char *to_encrypt) {
    char c;
    while (*to_encrypt) {
        *to_encrypt = *to_encrypt ^ 20;
        to_encrypt++;
    }
}

will return "nothing" for the character k. Clearly, character decay is problematic for decryption.

I assume this is caused by the bit operator, but I am not very good with binary so I was wondering if anyone could explain.

Is it converting an element, k, in this case, to some spaceless ASCII character? Can this be compensated for by choosing some y < x < z operator where x is the operator?

Lastly, if it hasn't been compensated for, is there a realistic decryption strategy for filling in blanks besides guess and check?

share|improve this question
4  
The ASCII value for 'k' is 0x6B, or 01101011. 01101011 ^ 00010100 is 01111111, which is not "nothing". What do you mean by "blank"? – David Jan 9 at 21:11
It's a control code, so it will normally not be displayed. – owlstead Jan 9 at 21:11
@David. Thanks for showing the binary! Yeah, I figured it was something! Thus the quotes. I am still curious how to compensate for this, if one passes the array as plaintext rather than the variable, in particular. – d0rmLife Jan 9 at 21:14
@David by blank I mean that within the terminal I see no symbol when I print the encryption. – d0rmLife Jan 9 at 21:15
1  
@d0rmLife: It may or may not be a problem for passing between environments, depending on how it is passed. Some protocols don't like control characters. – Fred Larson Jan 9 at 21:26
show 9 more comments

migrated from security.stackexchange.com Jan 9 at 21:06

3 Answers

up vote 6 down vote accepted

'k' has the ASCII value 107 = 0x6B. 20 is 0x14, so

'k' ^ 20 == 0x7F == 127

if your character set is ASCII compatible. 127 is \DEL in ASCII, which is a non-printable character, so won't be displayed if you print it out.

share|improve this answer
Great explanation! So, with this observation in mind, the variable to_encrypt, in this case, will retain that information; BUT, the message couldn't be passed as plaintext, is that right? – d0rmLife Jan 9 at 21:18
2  
I'm not sure what you mean with "the message couldn't be passed as plaintext". If you XOR-encrypt a message, the encrypted message will usually contain some non-printable characters. So you can't print it out and read it back in somewhere else to decrypt it and get the original back, the characters that were encrypted as non-printable characters will be lost. But you can print out e.g. the hex representations of the characters. Those can be parsed back and decrypted without loss. Or you can send the stream of bytes (needs a length, since some characters are encrypted to 0) as bytes. – Daniel Fischer Jan 9 at 21:24
Or just send it as a 0x20-terminated string instead of a null-terminated string :) – David Grayson Jan 9 at 21:26
1  
@DavidGrayson Hmm, please don't make jokes like that on a question/answer that is for people just coming to understand character encoding :) Could you remove it? – owlstead Jan 9 at 21:42
It's not really a joke, just a slightly odd but good suggestion. Looking for the 20 in a byte stream is a valid way to find the end of the "encrypted" string because the plaintext string was null-terminated. (Oops, I wrote 0x20 in my first comment but I meant 20.) – David Grayson Jan 9 at 23:50
show 1 more comment

You will have to know the difference between bytes and characters to understand which is happening. On the one hand you have the C char type, which is simply a presentation of a byte, not a character.

In the old days each character was mapped to one byte or octet value in a character encoding table, or code page. Nowadays we have encodings that take more bytes for certain characters, e.g. UTF-8, or even encodings that always take more than one byte such as UTF-16. The last two are unicode encodings, which means that each character has a certain number value and the encoding is used to encode this number into bytes.

Many computers will interpret bytes in ISO/IEC 8859-1 or Latin-1, sometimes extended by Windows-1252. These code pages have holes for control characters, or byte values that are simply not used. Now it depends on the runtime system how these values are handled. Java by default substitutes an ? character in place of the missing character. Other runtimes will simply drop the value or - of course - execute the control code. Some terminals may use the ESC control code to set the color or to switch to another code page (making a mess of the screen).

This is why ciphertext should be converted to another encoding, such as hexadecimals or Base64. These encodings should make sure that the result is readable text. This takes care of the cipher text. You will have to choose a character set for your plain text too, e.g. simply perform ASCII or UTF-8 encoding before encryption.

share|improve this answer
That must have been the quickest upvote I've ever received :) – owlstead Jan 9 at 21:24
Thanks for that level of detail. – d0rmLife Jan 9 at 21:35

Getting a zero value from encryption does not matter because once you re-xor with the same xor key you get the original value.

value == value
value XOR value == 0 [encryption]
( value XOR value ) XOR value == value [decryption]

If you're using a zero-terminated string mechanism, then you have two main strategies for preventing 'character degradation'

  • store the length of the string before encryption and make sure to decrypt at least that number of characters on decryption
  • check for a zero character after decoding the character
share|improve this answer
But, if the value is passed as plaintext rather than as a variable the problem remains. Is there a way to compensate for this if one is passing the encryption beyond the confines of the environment where it was created? – d0rmLife Jan 9 at 21:16
1  
You need to transmit bytes after encryption, not characters. If you send bytes, you must transmit all the encrypted characters, and if you don't send the length, and additional encrypted null character that will be checked on the decryption side (this is based on the encryption strategies I outlined) – Petesh Jan 9 at 21:24
2  
Fundamentally, though, the end product of the encrypt routine is no longer a string per-se, but a byte array. You can keep passing the pointer around, but relying on code such as strlen will no longer work. You can decrypt using the second point of my strategies. If you want to transmit the data, then you have to make sure to transmit up to the length of the data, not the strlen of the data. – Petesh Jan 9 at 21:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.