All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
HINTS:
1. Writing a program may help you.
2. There are eight bits in one byte.
3. Think low level, very low level.
I have absolutely no clue how to go about solving this, and you people are among some of the most intelligent programmers I know, so I thought you might enjoy trying to solve this one for me.
't Looks like it's got to be solved like this:
Convert hex->Ascii
Then you'll have an array of 0s, 1s and spaces (30 = 0, 31 = 1, 20 = space) These make me think you'll have to concider this as binary and convert that to either numbers or text. That every space is the 7th value on row makes me think this even more.
Of course I could be way off. I'm tired as hell ('t Is nearly 7am now), but at least that's my two cents.
cloudee1 wrote:
I have absolutely no clue how to go about solving this, and you people are among some of the most intelligent programmers I know, so I thought you might enjoy trying to solve this one for me.
No, of course not. We're very lazy here, all we do is write operating systems. We're not very sportive or competitive, I don't think you'll find many people actually interested in the competition.
As said before, they're space-separated binary digits, not balanced (they finish at a non-byte end). Make a few programs that try to decode it (first try to make it plain ascii etc.) and look at the output for patterns.
"Congratulations, You have cracked the encryption! Here is your answer: XfptR3rt5S8gl214fkfDkD77cr0zZ"
Didn't take me more than 5 minutes.
Oh, and it does divide into bytes nicely, the last symbol happens to be null-termination of the string, with spaces thrown in it to distract everyone (except for me ).