1
vote
1answer
83 views
XORing at the address stored in EAX
How can you XOR the value stored in EAX?
The problem is at this line:
xor eax, key
EAX contains the address of the value i want to XOR. How can I accomplish this? I though it w …
1
vote
3answers
107 views
Difference between ^ Operator in JS and Python
I need to port some JS code which involves Math.random()*2147483648)^(new Date).getTime(). While it looks like for smaller numbers, the python function and the JS function are equi …
0
votes
6answers
111 views
128-bit type error
Hi,
Thanks to pbos help and its program (published here, for xoring a big file), I performed some tests and I see that I have another problem: having changed the mask by another o …
0
votes
4answers
206 views
XOR on a very big file
I would like to XOR a very big file (~50 Go).
More precisely, I would like to do so by XORing each block of 32 bytes of a plaintext file (because of lack of memory) with the key 3 …
0
votes
1answer
204 views
Char ^= 0xB3 equivalent in VBScript
I have the following C++ code:
Char ^= 0xB3;
Char is a single character in a string. Is there an equivalent in VBScript?
0
votes
2answers
140 views
Java string to bytearray back to string
I have a client and server java application that needs have encrypted text passing through each other. I am using an XOR encryption the encrypt the text that I want.
The problem i …
0
votes
1answer
229 views
How do you compute the XOR Remainder used in CRC?
I'm trying to remember how the math is worked out to compute the remainder of an XOR algorithm in Cyclical Redundancy Checks to verify the remainder bits of a network message.
I s …
0
votes
4answers
187 views
Encryption: reversing bitwise and bitshift?
I'm trying to reverse an XOR encryption. I have the encryption code:
// Walk the 16 nibbles in the 64 bit long long, selecting the corresponding key digit
// and XORing it into th …
1
vote
1answer
212 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?
4
votes
4answers
314 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. …
0
votes
2answers
91 views
Problem using regex to extract text
Hello!
I need to extract from the following lines of code
<label for="<%=foobar.bar %>">Password:</label>
<label for="foobar">Password:</label>
I …
8
votes
7answers
706 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 viewer …
0
votes
4answers
217 views
Keyword for exclusive or in ruby?
Does Ruby have a plain-English keyword for exclusive or, like they have "and" and "or"? If not, is this because exclusive or doesn't allow evaluation short-cutting?
2
votes
5answers
146 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 …
4
votes
7answers
571 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 …
