
Didactic Scrambled Egg Cipher
Didactic Scrambled Egg Cipher
The challenge text is incomplete, unless the problem is to unscramble the pseudocode 

maybe it would be better if you posted the encryption algorithm in a language like java or something so that you can be assured that questions about exact byte order or custom arrays are easily answered.
As these problems get more complicated, I can see it getting harder to explain the algorithm without just giving all the details of each function or line of code.
As these problems get more complicated, I can see it getting harder to explain the algorithm without just giving all the details of each function or line of code.
tails wrote:key is a 16-byte value and flip has 16 elements, so flip are 8-bit independent values ...?
If so, this challenge should be very tough!
O that seems very likely. Yea, this will be an extremely difficult challenge. 128 bits of possibilities ><. Maybe at least could we hope that flip is some permutation of the 0-15 (meaning no repeats or duplications of numbers)
Is it safe to assume that "print eggs;" prints out a hex encoded number with the most significant byte (of the three) first?adum wrote:sorry about the mess... added that one late last night while tired, and didn't check it thru carefully.
should be better now. flip was meant to read 'key'.
good luck!
adum
Or to put it another way, is the first encoded "eggs" 0x0043ed82 or 0x0082ed43?
Also just to be clear on "for (int eggs = {each 3-byte tuple in plaintext})"
If the plain text bytes were (in order from least significant to most significant) {0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, ... }
would eggs start off being 0x00ccddaa the first time around and 0xffeedd the second time around?
OR
would eggs start off being 0x00ccddaa the first time around and 0xddccbb the second time around?
yes.
Is it safe to assume that "print eggs;" prints out a hex encoded number with the most significant byte (of the three) first?
eggs would first be 0x00aabbcc, then 0x00ddeeff. and there is no feedback between the first tuple and the second.Also just to be clear on "for (int eggs = {each 3-byte tuple in plaintext})"
If the plain text bytes were (in order from least significant to most significant) {0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, ... }
would eggs start off being 0x00ccddaa the first time around and 0xffeedd the second time around?
OR
would eggs start off being 0x00ccddaa the first time around and 0xddccbb the second time around?
I really don't see much hope of this problem being solved ><
I'm not even sure I could solve the problem if i knew the first half of the sentence!
Possibly if LOOP wasn't so high, and there wasn't several bytes of key overlapping each bit of the "egg" variable, it might be possible.
This is one evil problem!
I'm not even sure I could solve the problem if i knew the first half of the sentence!

Possibly if LOOP wasn't so high, and there wasn't several bytes of key overlapping each bit of the "egg" variable, it might be possible.
This is one evil problem!

-
- Posts: 30
- Joined: Mon Apr 30, 2007 9:35 pm
just so: like in C.I don't know if figuring this out is part of the challenge, but how are you defining the << and >> operators?
I'm assuming that they're just left and right shifts, where zeros are inserted when new bits are required, but I want to double check. (Wiki says that '>>' is implementation defined)
-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode
I'm with MerickOWA on this one, its looking pretty tough. I can't believe this is the "warmup"!
The only solace I can find is that you're given every 1 in 3 key "code nibbles", and a single bit of another.
Overall, I'm loving these didactic challenges (especially since crypto is a bit of a weak spot for me) Although, you might want to start moving somewhere else
There's all those castles/forts down at the bottom that might be worth invading 

The only solace I can find is that you're given every 1 in 3 key "code nibbles", and a single bit of another.
Overall, I'm loving these didactic challenges (especially since crypto is a bit of a weak spot for me) Although, you might want to start moving somewhere else


Yea, and I'm having a hard time even knowing that to figure out the key. I think i've got about 14 out of the 128 bits, and anytime I try to guess at the others, it never makes any sense.therethinker wrote:I'm with MerickOWA on this one, its looking pretty tough. I can't believe this is the "warmup"!![]()
The only solace I can find is that you're given every 1 in 3 key "code nibbles", and a single bit of another.
Overall, I'm loving these didactic challenges (especially since crypto is a bit of a weak spot for me) Although, you might want to start moving somewhere elseThere's all those castles/forts down at the bottom that might be worth invading
-
- Posts: 144
- Joined: Fri Mar 28, 2008 11:29 pm
- Location: #hacker.org on Freenode