Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Decrypt this:
#1
I'm gonna add myself to the current motif. Decrypt this short text:

Code:
72<3>7=>3<47>55<8>3<6<8

It is fairly easy Tongue so the best algo wins (shorter & faster).
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#2
is it a sentence? :x Gah! Im horrible at these
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#3
It is a sentence Big Grin
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#4
is this the answer?
Code:
72<3>7=>3<47>55<8>3<6<8

if not i dont know >_>
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#5
I am asking you to decrypt my file.

C'mon, is it that hard?

I think it is fairly easy.
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#6
<edit>
Reply
#7
aha i know the algo. will post after my exam.... exam? **AAHHHH**
my exam in 15 mins....
Reply
#8
Quote:
Quote:72<3>7=>3<47>55<8>3<6<8

Code:
CLS
PRINT "HELLO WORLD"
END

Big Grin

*peace*

Meg.

Hey, that was not fair. You gave a serious hint and didn't give the algo to decrypt the text. Basicly, you ruined the challenge Sad
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#9
Awwwww... Meeeeeeeeeeeeg!

Ah well, I was gonna give it a shot, and fail. But Nate, tell us, how the heck do we decrypt that anyway?
Reply
#10
YEEHAW!
this is soooo messy, but hey...

Code:
'AHA!
CLS
s$ = "72<3>7=>3<47>55<8>3<6<8 "
FOR I = 1 TO LEN(s$)
a$ = MID$(s$, I, 1)
IF VAL(a$) <> 0 THEN
   num$ = num$ + a$
ELSE
   IF orig = 0 THEN orig = VAL(num$)
   oldd$ = old$
   old$ = a$
   oldnum = num
   num = VAL(num$)
   num$ = ""
   SELECT CASE oldd$
     CASE ">"
       new = new + num
     CASE "<"
       new = new - num
   END SELECT
       PRINT CHR$(new + orig);
END IF
NEXT
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)