Cipher Puzzler
-
Hey guys, I decided to see if I could fool the CP lounge crowd. Here's a hand encrypted text, no computer algorithms or anything. Let's see how long it takes one of you to decypher it. Try your best and tell me what you come up with. If no one comes up with a solution, I will post it by the end of the business day (central time). Have fun! Ciphertext: GONANNTAENTTIEPTNEIINPEIIPNOEEROUESNTRSNSRPAYCPTICINNEIASERDINRE -- Adam "If you can't beat your computer in chess, try kickboxing"
-
Hey guys, I decided to see if I could fool the CP lounge crowd. Here's a hand encrypted text, no computer algorithms or anything. Let's see how long it takes one of you to decypher it. Try your best and tell me what you come up with. If no one comes up with a solution, I will post it by the end of the business day (central time). Have fun! Ciphertext: GONANNTAENTTIEPTNEIINPEIIPNOEEROUESNTRSNSRPAYCPTICINNEIASERDINRE -- Adam "If you can't beat your computer in chess, try kickboxing"
-
well, the original text was, so any thing that's not would be wrong ;) -- Adam "If you can't beat your computer in chess, try kickboxing"
-
Hey guys, I decided to see if I could fool the CP lounge crowd. Here's a hand encrypted text, no computer algorithms or anything. Let's see how long it takes one of you to decypher it. Try your best and tell me what you come up with. If no one comes up with a solution, I will post it by the end of the business day (central time). Have fun! Ciphertext: GONANNTAENTTIEPTNEIINPEIIPNOEEROUESNTRSNSRPAYCPTICINNEIASERDINRE -- Adam "If you can't beat your computer in chess, try kickboxing"
First I had a look at the histogram / character distribution, and it looked fairly English. So I thought it would be some simple row shifting thingy. Split the string into 8-character sub-words and write them as a matrix:
G O N A N N T A E N T T I E P T N E I I N P E I I P N O E E R O U E S N T R S N S R P A Y C P T I C I N N E I A S E R D I N R E
Now read the first column from top to down, the second column from top to down, etc. The resulting plain text is: Genius is one percent inspiration and ninetynine percent perspiration tae ... as said by Thomas Edison :) I assume the tae is just for padding. Easy one :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT) -
First I had a look at the histogram / character distribution, and it looked fairly English. So I thought it would be some simple row shifting thingy. Split the string into 8-character sub-words and write them as a matrix:
G O N A N N T A E N T T I E P T N E I I N P E I I P N O E E R O U E S N T R S N S R P A Y C P T I C I N N E I A S E R D I N R E
Now read the first column from top to down, the second column from top to down, etc. The resulting plain text is: Genius is one percent inspiration and ninetynine percent perspiration tae ... as said by Thomas Edison :) I assume the tae is just for padding. Easy one :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT)Dominik Reichl wrote: I assume the tae is just for padding tae = Thomas A Edison //Start of joke Never comment ur code. If it was hard to write, it should be hard to understand !!! //End of joke
-
First I had a look at the histogram / character distribution, and it looked fairly English. So I thought it would be some simple row shifting thingy. Split the string into 8-character sub-words and write them as a matrix:
G O N A N N T A E N T T I E P T N E I I N P E I I P N O E E R O U E S N T R S N S R P A Y C P T I C I N N E I A S E R D I N R E
Now read the first column from top to down, the second column from top to down, etc. The resulting plain text is: Genius is one percent inspiration and ninetynine percent perspiration tae ... as said by Thomas Edison :) I assume the tae is just for padding. Easy one :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT)Darn...too easy. Congratulations. I'll come up with a harder one for next Tuesday, one that you can really stump yourself on. TAE is of course Thomas Alva Edison. Have a great day! -- Adam "If you can't beat your computer in chess, try kickboxing"
-
Darn...too easy. Congratulations. I'll come up with a harder one for next Tuesday, one that you can really stump yourself on. TAE is of course Thomas Alva Edison. Have a great day! -- Adam "If you can't beat your computer in chess, try kickboxing"
Congratulations. I'll come up with a harder one for next Tuesday, one that you can really stump yourself on. Happily awaiting it :) Have a great day! You too :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT) -
First I had a look at the histogram / character distribution, and it looked fairly English. So I thought it would be some simple row shifting thingy. Split the string into 8-character sub-words and write them as a matrix:
G O N A N N T A E N T T I E P T N E I I N P E I I P N O E E R O U E S N T R S N S R P A Y C P T I C I N N E I A S E R D I N R E
Now read the first column from top to down, the second column from top to down, etc. The resulting plain text is: Genius is one percent inspiration and ninetynine percent perspiration tae ... as said by Thomas Edison :) I assume the tae is just for padding. Easy one :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT)Dominik Reichl wrote: _outp(0x64, 0xAD); and __asm mov al, 0xAD __asm out 0x64, al Urk...0x64 is the keyboard port, if memory serves... AD = 1010 1101 that would disable the command bit, right? Turn off the keyboard?
Jeremy Kimball Catapultam habeo. Nisi pecuniam omnem mihi dabis, ad caput tuum saxum immane mittam. (I have a catapult. Give me all the money, or I will fling an enormous rock at your head)
-
Dominik Reichl wrote: _outp(0x64, 0xAD); and __asm mov al, 0xAD __asm out 0x64, al Urk...0x64 is the keyboard port, if memory serves... AD = 1010 1101 that would disable the command bit, right? Turn off the keyboard?
Jeremy Kimball Catapultam habeo. Nisi pecuniam omnem mihi dabis, ad caput tuum saxum immane mittam. (I have a catapult. Give me all the money, or I will fling an enormous rock at your head)
Turn off the keyboard? Exactly :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT) -
Turn off the keyboard? Exactly :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT)Wow...it scares me that I actually remembered that. I need to get out more. :(
Jeremy Kimball Catapultam habeo. Nisi pecuniam omnem mihi dabis, ad caput tuum saxum immane mittam. (I have a catapult. Give me all the money, or I will fling an enormous rock at your head)
-
First I had a look at the histogram / character distribution, and it looked fairly English. So I thought it would be some simple row shifting thingy. Split the string into 8-character sub-words and write them as a matrix:
G O N A N N T A E N T T I E P T N E I I N P E I I P N O E E R O U E S N T R S N S R P A Y C P T I C I N N E I A S E R D I N R E
Now read the first column from top to down, the second column from top to down, etc. The resulting plain text is: Genius is one percent inspiration and ninetynine percent perspiration tae ... as said by Thomas Edison :) I assume the tae is just for padding. Easy one :-D Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;) (doesn't work on NT)Dominik Reichl wrote: I assume the tae is just for padding. Thomas Alva Edison Charlie if(!curlies){ return; }