For questions involving exclusive-or operations (typically bitwise).
0
votes
0answers
23 views
Linear Feedback Shift Register algorithm
I'm trying to code my own implementation of Linear Feedback Shift Register on Matlab in order to generate a pseudo-random sequence of numbers. Suppose I need to generate a sequence from 1 to 16,384 ...
0
votes
0answers
13 views
Shortest hamiltonian path with dynamic programming and bitmasking
I've just read an article about how to find the shortest hamiltonian path using dynamic programming here http://codeforces.com/blog/entry/337.
While the pseudocode works, I do not understand why I ...
0
votes
4answers
136 views
Why don't people use xor swaps? [closed]
I read on a site that using xor swaps is fast because it doesn't use a temporary variable. Here's an example:
#include <stdio.h>
int main(void)
{
int a=234,b=789;
b=b^a;
...
0
votes
1answer
45 views
Ruby Byte XOR strange result - help please
I was doing some XOR of data and things were going well with my hex based XOR. It was recommend that I use a byte XOR (^) and only work with bytes. I thought that will take no time to change that but ...
-2
votes
1answer
24 views
Vernam Cipher shared secret key
A and B share the secret key K.
They agree the following protocol for the instigator of communication between them to authenticate the receiver when communicating over an insecure channel. The ...
1
vote
3answers
79 views
XOR using a 4:1 Mux in VHDL
I need to create XOR with 4:1 Mux (I know that it's easier without a Mux...)
I found this useful example for 4:1
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity multiplexer4_1 is
port (
i0 ...
0
votes
2answers
48 views
How does xor encryption work
Imagine I'm trying to encrypt the set of characters {45, 56, 78, 43, 67} with the key {11, 23, 44}.
Does this encrypt like this:
45 XOR 11; 56 XOR 23; 78 XOR 44; 43 XOR 11; 67 XOR 23;
Or am I ...
0
votes
3answers
26 views
PHP or/xor operator isn't working like expected
/* Create Theme Rules */
if($selectedTheme=='spring' or 'framed' or 'art' or 'champagne'){
echo 'yes';
}
I have this scripting that should only take place if the $selectedTheme equals one of the ...
6
votes
3answers
145 views
Slow XOR operator
EDIT: Indeed, I had a weird error in my timing code leading to these results. When I fixed my error, the smart version ended up faster as expected. My timing code looked like this:
bool x = false;
...
1
vote
1answer
28 views
Python XOR operation and ser.read()
I am implementing a Python script to read frames sent by a XBee. PC will receive frames and process them.
I have a problem because I use AP=2 in XBee, so all frames can have escaped characters. I ...
1
vote
2answers
168 views
Assembly decrypting/reversing? Is XOR an issue?
What is going wrong with this... can an xor's effect be reversed?
1
vote
2answers
64 views
C++ implementation (XOR,IMPLIES,IFF)
Truth table:
P-----------Q-----------XOR-----------IMPLIES-----------IFF
T-----------T--------------F---------------T-----------------T
...
1
vote
2answers
111 views
Xor encryption on binary file in python
I'm trying to do a simple encryption script in python. I just want to use XOR encryption on binary files.
My script basically looks like :
def xor_c ( a ):
v=''
for p in a:
v += ...
2
votes
0answers
59 views
Randomization using hash() method in Java HashMap [closed]
In the HashMap implementation in Java, after computing the hash value of the key object, I guess that the function, hash(int hashvalue), is used on it to further randomize the hash values generated. ...
0
votes
2answers
106 views
Perform Bitwise XOR on 2 strings in ruby [duplicate]
I am trying to perform a Bitwise XOR on two key strings in ruby:
key1: 0123456789abcdeffedcba9876543210
key2: 00000000000000000000000000000000
Could someone please tell me how to do this, thanks.
2
votes
1answer
92 views
Android bitwise xor error in OpenCV
I've tried bitwise xor on android but I get the following error:
04-11 00:25:47.404: E/cv::error()(7370): OpenCV Error: Sizes of input arguments do not match (The operation is neither 'array op ...
0
votes
1answer
95 views
What C standard says about bitwise XOR of two signed integers? [duplicate]
Which ANSI C standard says something about bit wise XOR of two signed integers? I tried to read the standard, but it is vast.
XOR of two signed integers is valid as per C standard? What will happen ...
1
vote
1answer
43 views
Reverse XOR operator in JavaScript?
I have 2 variables, x and y.
I am doing z = x^y.
Now after some time I know only z and y, How can I get x back? Is there an opposite to ^ in JavaScript?
-1
votes
1answer
25 views
Three switches, one light [closed]
I'm not 100% certain that stack overflow is the correct exchange to post this; if it isn't please let me know.
I have three switches, all corresponding to one light. When ANY one of the switches are ...
6
votes
3answers
324 views
C/C++: is it faster to assign a 0 to an unsigned long variable or to xor the variable with itself? [closed]
I realize the difference may be negligible, but which is more efficient in trying to zero an unsigned long?
unsigned long x;
...
x=0;
--OR--
x^=x;
Taylor
-3
votes
2answers
62 views
Shortening bitwise equations
Similar to how plus and minus can be shortened thusly:
$x = $x + 5;
becomes
$x += 5;
Can you do a similar thing with bitwise operators? For example when applying XOR would the following be ...
0
votes
1answer
47 views
When to use XOR and when to use IFF?
Since ((NOT A) XOR B) and A→B ("iff....then") (~A→~B) are logically same (e.g. login can not happen unless authentication happens) does that have any practical use or is just a logic tautology and the ...
0
votes
2answers
167 views
Convert XOR function to return char* not string
I coded this XOR using string but I need to return a char* now. I've been trying to do this for hours, though I'm not really used to work with char. I guess I'm missing something here.
string ...
0
votes
1answer
118 views
XOR use in MIPS Assembly
Okay, I'm pretty sure I've used up all variations of possible XOR use to exchange $s0 with $s1, however, I still can't get it to work! It's MIPS Assembly and I'm using MARS. Please could somebody ...
-1
votes
1answer
159 views
Change XOR to XNOR
I am working with a XNOR encrypted file whose key is not known. I want to modify the xortool which is available here: https://github.com/hellman/xortool to work for XNOR encryption.
Apparently, there ...
1
vote
3answers
258 views
Python: CRC implementation using xor and shift registers
I was trying to implement 5-bit CRC with the CRC generator 100101.
However, this code doesn't reflect the hardware Xor and shift registers in CRC;
On the hardware level, we have the following :
How ...
1
vote
2answers
305 views
vb xor checksum
This question may already have been asked but nothing on SO actually gave me the answer I need.
I am trying to reverse engineer someone else's vb.NET code and I am stuck with what a Xor is doing ...
3
votes
1answer
129 views
How can I use SIMD to accelerate XOR two blocks of memory?
I want to XOR two blocks of memory as quickly as possible, How can I use SIMD to accelerate it?
My original code is below:
void region_xor_w64( unsigned char *r1, /* Region 1 */
...
0
votes
1answer
80 views
Why 64-bits aligned XOR do not run faster than 32-bits aligned XOR?
I want to test the speed of two block of memmory, and I did a experiment in a 64 bits machine(4M cache), and XOR two region of memory with 32-bits aligned and 64-bits aligned respectively.I thought ...
0
votes
1answer
99 views
Why we have to clear the ax register when we are going to use a user input?
Well my question is that, why we have to clear with xor ax,ax the ax register? I thought that when the user inputs a character for variable A, and when users input again a character for variable B, ...
0
votes
0answers
87 views
stream xor cipher
I am very new to C programming but i was working on cryptography for ipsec and am trying to write a code for implementing a simple code for a stream cipher which will take a 20 charecter long string ...
1
vote
1answer
374 views
Simplifying 4 NAND Gates Into 1 XOR Gate Boolean Algebra?
I am trying to understand with boolean algebra how using 4 NAND Gates can be equivalen to 1 XOR gate.
If we look at this picture from wikipedia http://en.wikipedia.org/wiki/XOR_gate#Alternatives
...
-1
votes
1answer
130 views
Bitwise XOR uudecode string in Perl
I have the following strings at left with encoded values at right:
123456789012 ,\#8%-SM+"Q$[2C4?_\n
1234567890123 -\#8%-SM+"Q$[2C4?_SP \n
12345678901234 ...
0
votes
1answer
103 views
Perl XOR escape string that contains “^”
How can I escape a "^" character when doing a bitwise XOR in Perl? My script is ok but when I input a string like .1M80P]/)S@*>RQF^RM< \n then the output gets messed up:
#!/usr/bin/perl
$key = ...
1
vote
1answer
111 views
Port small bitwise XOR perl function to Ruby
I have the following Perl script that does a bitwise XOR on a string with a HEX key:
#!/usr/bin/perl
$key = pack("H*","3cb37efae7f4f376ebbd76cd");
print "Enter string to decode: ";
...
1
vote
1answer
143 views
Reversing hash, Finding collision (XOR with sums and left/right shifts)
A ^ ( (A >> 2) + (A << 5) + C ) == B
How to find A if B is const and C is variable? (C can be changed if there is no solution with it)
A is DWORD, B is DWORD, C is BYTE != 0
Edit1: ...
-1
votes
2answers
47 views
php xor operator not working as expected
I have the following code. If i run each condition separately it works fine but soon as i add the 'xor' or 'or' or '||' operators neither seem to match.
I know its going to be something simple im ...
1
vote
2answers
117 views
Adding JPanel inside a JPanel - the nested JPanel won't display
New Code
package test;
import javax.swing.*;
import java.awt.*;
public class TestWindow extends JFrame{
//------------------------------------------------------------------------------
...
0
votes
1answer
95 views
XOR reverse a string in objective-c get an error
I want to use the following code to reverse a char * type string in objective-c:
- (char *)reverseString:(char *)aString
{
unsigned long length = strlen(aString);
int end = length - 1;
...
3
votes
2answers
47 views
Numpy xor-reduce an array
How to xor all elements of a boolean numpy array using vectorized methods:
i.e., a_1 xor a_2 xor ... xor a_n?
0
votes
0answers
31 views
Compare encrypted data and find the key
Let's say you have two byte arrays. Both contain the same data and were encrypted using the same algorithm but with a different key. Algorithm is very simple (xor, rotation etc). You know the key, how ...
-1
votes
1answer
81 views
Bitwise operators in Lua for Windows?
I am currently using Lua for Windows, and my current project deals with binary files. I need the XOR bitwise operator however, I don't think Lua for Windows have a bitwise operator library since it's ...
0
votes
0answers
70 views
Byte-Encryption Reversing [closed]
I've been thinking and trying for several days and amount of hours but I can't find a solution. Now I hope you can help me.
Firstly the reason why I need this: I'm coding a configurator for a piece ...
0
votes
1answer
105 views
How can I find a solution of binary matrix equation AX = B?
Given an m*n binary matrix A, m*p binary matrix B, where n > m what is an efficient algorithm to compute X such that AX=B?
For example:
A =
1 1 0 0 1 1 0 1 0 0
1 1 0 0 1 0 1 0 0 ...
11
votes
1answer
341 views
Java AWT custom CompositeContext & anti-aliasing: RasterFormatException when drawing outside of the client area
I am trying to implement SWT GC-like xor-mode drawing for an AWT Graphics2D. Using the built-in XORComposite is not an option as it does not implement xor-mode drawing as in SWT.
The SWT xor-mode ...
-1
votes
1answer
300 views
How to decrypt/encrypt a file in AES 256? [closed]
first of all, do not know much about encryption.
I need to decrypt some files, change some values then re-encrypt.
how to do this deed?
Can some program can do that?
or someone could create a ...
1
vote
1answer
201 views
Easy way to generate XOR checksum on a stream?
In C# is there an easy way to generate an XOR checksum on a MemoryStream (binary) excluding the first, and last two, bytes?
Also, is it easier to extend the BinaryWriter and do it as the Stream is ...
2
votes
1answer
172 views
Python equivalent of sum() using xor()
I like the Python sum function :
>>> z = [1] * 11
>>> zsum = sum(z)
>>> zsum == 11
True
I want the same functionality with using xor (^) not add (+). I want to use map. ...
1
vote
2answers
146 views
Understanding XOR PHP
I am writing section in my program to update a user, and there is password and confirm passwords. I dont want to do anything to the password field in the DB unless they have filled the fields in.
So ...
1
vote
2answers
2k views
Python: XOR hex strings [duplicate]
Possible Duplicate:
bitwise XOR of hex numbers in python
I am trying to XOR two hex strings in Python and did not really know where to start from.
I have two hex strings:
a = ...






