Tagged Questions

For questions involving exclusive-or operations (typically bitwise).

learn more… | top users | synonyms

61
votes
3answers
2k views

Why does swapping values with XOR fail when using this compound form?

I found this code to swap two numbers without using a third variable, using the XOR ^ operator. Code: int i = 25; int j = 36; j ^= i; i ^= j; j ^= i; Console.WriteLine("i:" + i + " j:" + ...
36
votes
22answers
2k views

Code Golf: XOR Encryption

From: Encryption Co. To: x$*sj4 (that's you) Your mission, should you choose to accept it, is to create a program in the shortest number of keystrokes that Takes two filenames parameters (either ...
36
votes
11answers
6k views

Simple Python Challenge: Fastest Bitwise XOR on Data Buffers

Challenge: Perform a bitwise XOR on two equal sized buffers. The buffers will be required to be the python str type since this is traditionally the type for data buffers in python. Return the ...
30
votes
9answers
5k views

How does XOR variable swapping work?

Can someone explain to me how XOR swapping of two variables with no temp variable works? void xorSwap (int *x, int *y) { if (x != y) { *x ^= *y; *y ^= *x; *x ^= *y; } ...
24
votes
10answers
20k views

Is it good practice to use the XOR (^) operator in Java for boolean checks?

I personally like the 'exclusive or' operator when it makes sense in context of boolean checks because of its conciseness. I much prefer to write if (boolean1 ^ boolean2) { //do it } than ...
19
votes
7answers
15k views

Creating a “logical exclusive or” operator in Java

Observations: Java has a logical AND operator. Java has a logical OR operator. Java has a logical NOT operator. Problem: Java has no logical XOR operator, according to sun. I would like to define ...
13
votes
12answers
6k views

What's wrong with XOR encryption?

I wrote a short C++ program to do XOR encryption on a file, which I may use for some personal files (if it gets cracked it's no big deal - I'm just protecting against casual viewers). Basically, I ...
11
votes
7answers
973 views

Why is there no ^^ operator in C/C++?

& has &&. | has ||. Why doesn't ^ have ^^? I understand that it wouldn't be short-circuiting, but it would have different semantics. In C, true is really any non-zero value. Bitwise XOR ...
10
votes
5answers
2k views

Why is there no logical xor in JavaScript?

Why is there no logical xor in JavaScript?
10
votes
5answers
460 views

XOR of three values

What is the simplest way to do a three-way exclusive OR? In other words, I have three values, and I want a statement that evaluates to true IFF only one of the three values is true. So far, this is ...
10
votes
9answers
2k views

Is there anyway to implement XOR in javascript

I'm trying to implement XOR in javascript in the following way: // XOR validation if ((isEmptyString(firstStr) && !isEmptyString(secondStr)) || (!isEmptyString(firstStr) && ...
9
votes
8answers
628 views

A or B, not both, not neither

Ever since reading Clean Code I have been trying to keep my code descriptive and easy to understand. I have a condition where either A or B must be filled in. But not both. And not neither. ...
9
votes
1answer
4k views

Is the ^ operator really the XOR operator in C#?

I read that the ^ operator is the logical xor operator in c#, but i also thought it was the "power of" operator. Can someone clear this up for me?
8
votes
4answers
442 views

In an array with integers one value is in the array twice. How do you determine which one?

Assume that the array has integers between 1 and 1,000,000. I know some popular ways of solving this problem: If all numbers between 1 and 1,000,000 are included, find the sum of the array elements ...
8
votes
3answers
853 views

Why are XOR often used in java hashCode() but another bitwise operators are used rarely?

I often see code like int hashCode(){ return a^b; } Why XOR?
7
votes
5answers
380 views

Most Efficient way to set Register to 1 or (-1)

I am taking an assembly course now, and the guy who checks our home assignments is a very pedantic old-school optimization freak. For example he deducts 10% if he sees: mov ax, 0 instead of: xor ...
7
votes
7answers
975 views

XOR using mathematical operators

How can I implement XOR using basic mathematical operators like +,-,*,/ Update: Actually, I need to track change in two matrix having Boolean values. This can be done using XORing each value with ...
7
votes
5answers
2k views

Why does the xor operator on two bytes produce an int?

//key & hash are both byte[] int leftPos = 0, rightPos = 31; while(leftPos < 16) { //possible loss of precision. required: byte, found: int ...
6
votes
1answer
311 views

Different Combinations algorithm (Candy Splitting)

Yesterday I paticipated in the Google code jam contest. There were that candy splitting problem. http://code.google.com/codejam/contest/dashboard?c=975485#s=p2 I designed an algorithm that basically ...
6
votes
4answers
306 views

Why is XOR the default way to combine hashes?

Say you have two hashes H(A) and H(B) and you want to combine them. I've read that a good way to combine two hashes is to XOR them, e.g. XOR( H(A), H(B) ). The best explanation I've found is touched ...
6
votes
12answers
3k views

Exclusive Or in Regular Expression

Hey Folks! Looking for a bit of regex help. Id like to design an expression that matches a string with "foo" OR "bar" but not both "foo" AND "bar" If I do something like... /((foo)|(bar))/ Itll ...
5
votes
4answers
181 views

In Java XOR with three true inputs returns true. Why?

The following code System.out.println("1 0 0: " + (true ^ false ^ false)); System.out.println("1 0 1: " + (true ^ false ^ true)); System.out.println("1 1 0: " + (true ^ true ^ false)); ...
5
votes
7answers
263 views

XOR linked list

I recently came across the link below which I have found quite interesting. http://en.wikipedia.org/wiki/XOR_linked_list General-purpose debugging tools cannot follow the XOR chain, making ...
5
votes
10answers
595 views

Understanding xor

I'm getting into assembly and I keep running into xor. I don't have much experience with it, so I'm curious what does it exactly mean? I also have run into this command and I'm not 100% sure if it ...
5
votes
1answer
153 views

Amazon EC2 Instance IDs - Why XOR?

According to Guy Rosen and RightScale the Amazon EC2 instance IDs contain two XORs against the first and second half of the "Inner ID" and all three against their own constant. I understand that we ...
5
votes
6answers
390 views

What is the point of the logical operators in C?

I was just wondering if there is an XOR logical operator in C (something like && for AND but for XOR). I know I can split an XOR into ANDs, NOTs and ORs but a simple XOR would be much better. ...
5
votes
2answers
210 views

Write a maximum of two instructions to clear, set and complement some bits in the AL register

You are required to write a maximum of two instructions in assembly to do the following: Clear bits 0 and 7 of register AL, i.e. make them 0 Set bits 3 and 4 of register AL, i.e. make them 1. ...
5
votes
4answers
1k views

How do you implement XOR using +-*/?

How can the XOR operation (on two 32 bit ints) be implemented using only basic arithmetic operations? Do you have to do it bitwise after dividing by each power of 2 in turn, or is there a shortcut? I ...
4
votes
2answers
119 views

How to deal with xor conditions, rails, foreign keys and a sqlite database?

What I want is, building this somehow with Rails 3.1: If A has set an id for b_id, it shouldn't be possible to setting an id for c_id. And for sure vice versa too. I wish I could do at the database ...
4
votes
3answers
2k views

T-SQL XOR Operator

Is there an XOR operator or equivalent function in SQL Server (T-SQL)?
4
votes
2answers
400 views

Why swap with xor works fine in c++ but in java doesn't ? some puzzle [closed]

Possible Duplicate: Why is this statement not working in java x ^= y ^= x ^= y; Sample code int a=3; int b=4; a^=(b^=(a^=b)); In c++ it swaps variables, but in java we get a=0, b=4 ...
4
votes
5answers
263 views

characters XOR with caret manipulation

Working with exclusive-OR on bits is something which is clear to me. But here, XOR is working on individual characters. So does this mean the byte which makes up the character is being XORed? What ...
4
votes
6answers
294 views

Why does “x ^= true” produce false in this example?

Why does the statement z ^= true produce a false when the previous produces a true ? bool v = true; bool z = false; z ^= v; Console.WriteLine(z); z ^= true; Console.WriteLine(z); OUTPUT ====== ...
4
votes
4answers
1k views

Game solving algorithm (Buttonia, lights-out variant)

I am trying to create a solvability function for a game algorithm. Basically a function that returns true or false for a given game it if is solvable or not. The game is Buttonia.com (which does not ...
3
votes
1answer
152 views

Why is a bias neuron necessary for a backpropagating neural network that recognizes the XOR operator?

I posted a question yesterday regarding issues that I was having with my backpropagating neural network for the XOR operator. I did a little more work and realized that it may have to do with not ...
3
votes
2answers
139 views

Fast xor array in matlab

Is there a fatser way to xor every column of a matrix than this? mod(sum(matrix),2) It converts from logical to double and uses the expensive modulo. Update: According to this source, summing ...
3
votes
7answers
303 views

Xor encryption in PHP

I'm new to Xor encryption, and I'm having some trouble with the following code: function xor_this($string) { // Let's define our key here $key = ('magic_key'); // Our plaintext/ciphertext $text ...
3
votes
3answers
140 views

How to complement bytes in java?

I need to complement string binaries. st=br.readLine() //I used readline to read string line byte[] bytesy = st.getBytes(); //and put it to bytes array. Now how can I complement the binary ...
3
votes
5answers
130 views

c# xor functionality

I found this code to reverse a string using the or operator, public static string ReverseXor(string s) { if (s == null) return null; char[] charArray = s.ToCharArray(); int len ...
3
votes
2answers
136 views

How to define Xor in Coq and prove its properties

This should be an easy question. I'm new with Coq. I want to define the exclusive or in Coq (which to the best of my knowledge is not predefined). The important part is to allow for multiple ...
3
votes
1answer
172 views

Finding the Key used to Encrypt

I have this pseudo code: for i = 0 ... P.length C[i] = P[i] XOR K[i%K]; K[i%k] = ( K[i%k] +P[i] ) mod 64; Where P is a plain text, C is the encrypted text, K is a key and k denotes the ...
3
votes
4answers
450 views

Best encryption for large amounts of data (speed is essential)?

I'm relatively new to C# and encryption so please bear with me. I'mworking on a business application (in C#, .NET 4.0, VS 2010) that stores quite a lot of data and it must also be capable of reading ...
3
votes
3answers
603 views

C code for XOR linked list

I have been trying to Implement XOR linked list and its operations but I have not been able to do it properly. Is it possible to implement it in C since XOR link list involves operations on ...
3
votes
6answers
587 views

jnz after xor?

After using IDA Pro to disassemble a x86 dll, I found this code (Comments added by me in pusedo-c code. I hope they're correct): test ebx, ebx ; if (ebx == false) jz short loc_6385A34B ...
3
votes
2answers
476 views

How Can I: Generate 40/64 Bit WEP Key In Python?

So, I've been beating my head against the wall of this issue for several months now, partly because it's a side interest and partly because I suck at programming. I've searched and researched all ...
3
votes
5answers
334 views

Check if only one variable in a list of variables is set

I'm looking for a simple method to check if only one variable in a list of variables has a True value. I've looked at this logical xor post and is trying to find a way to adapt to multiple variables ...
3
votes
3answers
8k views

EXCEL XOR multiple bits

Okay I have two cells with a string of bits 0111010 and 0101011. I want to XOR the two together so that the resulting cell would be 0010001. I know you can use this for boolean values ...
2
votes
1answer
93 views

Very basic encryption program

I am creating a very basic encryption program using XOR to encrypt a user file and decrypt it again. What's happening however is when I encrypt I get a long line of the same 6 letters and when I try ...
2
votes
2answers
82 views

XOR register,register (assembler)

From time to time we have to analyze pieces of assembler code (IA32), and more than often i come across an instruction that looks like this: xor ax, ax or with other registers aswell: xor dx, dx, ...
2
votes
4answers
550 views

XOR File Decryption

So I have this assignment for college where I have to decrypt a .txt file that is crypted with XOR code and with a repeated password that is unknown, and the goal is to discover the message. Here are ...

1 2 3 4