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.

|
|
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.
|
|||
|
|
|
|
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. |
||||||||
|
|
|
This is not an plus, but the sign for the binary operator XOR
|
||
|
|
|
|
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 |
||
|
|
|
|
That's the XOR operator, not the PLUS operator XOR works bit by bit, without carrying over like PLUS does
|
||
|
|
|
|
The plus-symbol in a circle does not denote addition. It is a XOR operation. I hope it makes more sense now.. |
||
|
|
|
|
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. |
||
|
|
|
|
Hope this layout works, take it to the binary representation with an XOR:
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 |
||
|
|
|
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! |
||
|
|