Didactic XOR Cipher

Discussion of challenges you have already solved
Post Reply
Bo
Posts: 3
Joined: Wed Apr 23, 2014 10:02 am

Post by Bo »

how the hell should i guess that answer was in ASCII?
correct answer is 72616e646f6d2073656564 in hex and i ve got it in like 5 min, but lost an hour to figure out the answer format. c++ there

Code: Select all

printf("%c%c%c%c%c%c%c%c%c%c%c%c",
		(0x3d ^ 0x4F),
		(0x2e ^ 0x4F),
		(0x21 ^ 0x4F),
		(0x2b ^ 0x4F),
		(0x20 ^ 0x4F),
		(0x22 ^ 0x4F),
		(0x6f ^ 0x4F),
		(0x3c ^ 0x4F),
		(0x2a ^ 0x4F),
		(0x2a ^ 0x4F),
		(0x2b ^ 0x4F));
allons-y
Bo
Posts: 3
Joined: Wed Apr 23, 2014 10:02 am

Post by Bo »

Code: Select all

for(int i = 0; i< s.size();i+=2)
	{
		stringstream str;
		string byte = s.substr(i,2);
		str << byte;
		int num(0);
		str >> std::hex >> num;
		printf("%c",(num^KEY));
	}
	cout<<endl;
allons-y
Post Reply