PDA

View Full Version : undo my string encode!


colfaxrev
03-12-2006, 09:06 AM
I attached my output string in a txt file, because its in unicode and probably wont go through if i posted it directly here.

here are your clues.

the key needed to undo this mess is

2869224986744973939821313

and the final length of the string when its decoded is 492 chars..

I know this is probably too crazy, but im just trying to make sure this encoding is hard to beat.

maybe its easy i dunno..

colfaxrev
03-12-2006, 09:51 AM
one more thing...

im including one more file that has different keycodes and output strings.

everyone of them is the same message, just using a different keycode.

colfaxrev
03-14-2006, 02:26 AM
I figured out how to keep the encoded string into Ascii standard, so it can be emailed.

ex.


MYstr = "My Encoded Text! If you can see this you were either meant to see it, or you're VERY smart!";
myKey = generateAlphaNumKey(30);
MYstr = mmfEncode(myKey, MYstr);


this will give you something like

myKey = "9VPNX5t8RFWFZuml8Ank8gkG0ByQwK";
MYstr = "0322911o23110aR2f31113P103RB214sB341yN3032Fe2dVX33 3w02i0L440N10330c13Z0x11eF31SlAX0dk3Wo0u2Z2p121231 30312s10vA3v2gP0okt3k1BMi1409c1Kq3030c11K6eX1119C3 3LDR30MPM1C0EVU0y00rX0Tp32K1YAbm";

P.S. im still trying to figure out how to make generateAlphaNumKey() work... i have a thread about that here...

http://www.actionscript.org/forums/showthread.php3?t=99788

the encoding does a LOT of crazy stuff.
shuffling, scrambling, XORing, bit shifting, all being deciding on vars created from each char in the keyString.

its insane! in fact my brain is fried!