vote up 3 vote down star

Can someone explain the second, third and fourth rows in the calculation? I cannot understand the calculation "66 ⊕ fa = 9c". The sum is clearly over "ff", so I am confused. The topic is simple encryption algorithm.

Source

flag

8 Answers

vote up 12 vote down check

People are saying that the symbol doesn't mean addition. This is true, but doesn't explain why a plus-like symbol is used for something that isn't addition.

The answer is that for modulo addition of 1-bit values, 0+0 == 1+1 == 0, and 0+1 == 1+0 == 1. Those are the same values as XOR.

So, plus in a circle in this context means "bitwise addition modulo-2". Which is, as everyone says, XOR for integers. It's common in mathematics to use plus in a circle for an operation which is a sort of addition, but isn't regular integer addition.

link|flag
Thank you for your mathematical explanation. I was initially confused as I had seen the sign here: en.wikipedia.org/wiki/Matrix_addition But it is clearly different operation. – Masi May 8 at 12:30
+1 for the excellent fact – Masi May 8 at 12:32
If you consider a byte to be a matrix with 8 columns and 1 row (or the other way around), taken over the finite field of order 2, then actually it is matrix addition :-) – Steve Jessop May 8 at 12:49
Don't forget that there is also a lot of reuse of notations in mathematics. Sometimes you really need to know the context to know the meaning of a particular symbol. – RBerteig May 8 at 23:34
vote up 2 vote down

Hope this layout works, take it to the binary representation with an XOR:

66h = 102 decimal = 01100110 binary
FAh = 250 decimal = 11111010 binary
------------------------------------
                    10011100 binary <------ that's 9Ch/156 decimal
    XOR rules are basically:
  • 1 XOR 1 = 0 false
  • 1 XOR 0 = 1 true
  • 0 XOR 0 = 0 false

but the wiki I linked earlier will give you more details if needed...thats what it looks like they are doing in the screenshot you provided

link|flag
lol, guess my "a new answer was posted" wasn't working this morning...I got a bar up top that said "undefined", nothing is funnier than writing up a response, submitting, and then seeing a dozen new ones :) – curtisk May 8 at 12:35
vote up 0 vote down

I used the logic in the replies by rampion and schnaader. I will summarise how I confirmed the results. I changed the numbers to binary and then used the XOR-operation. Alternatively, you can use the Hexadecimal tables: Click here!

link|flag
vote up 2 vote down

It's an exclusive or (XOR). If I remember correctly, when doing bitwise mathematics the dot (.) means AND and the plus (+) means OR. Putting a circle around the plus to mean XOR is consistent with the style used for OR.

link|flag
vote up 3 vote down

That's the XOR operator, not the PLUS operator

XOR works bit by bit, without carrying over like PLUS does

1 XOR 1 = 0
1 XOR 0 = 1
0 XOR 0 = 0
0 XOR 1 = 1
link|flag
vote up 12 vote down

This is not an plus, but the sign for the binary operator XOR

a   b   a XOR b
0   0   0
0   1   1
1   0   1
1   1   0
link|flag
vote up 2 vote down

The plus-symbol in a circle does not denote addition. It is a XOR operation.

I hope it makes more sense now..

link|flag
vote up 3 vote down

Hi

Its not an addition, but an exclusive OR operation. At least the output confirms to the same, so the symbol of the operator.

cheers

link|flag

Your Answer

Get an OpenID
or

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