After the success of last weeks Code-Bowling, we present you yet another chance to write the worst code you have ever written.

Code-Bowling is a challenge for writing the most obscure, unoptimized, horrific and bastardized code possible. Basically, the exact opposite of Code-Golf.

The Challenge

Write a program that encrypts an input string with a key and does so in the most complicated and obscure way possible, while adding as little security as possible.

Example:

Input: "This is a secret secret very secret message, really!"
Key: 09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa
Output: < some scrambeled gibberish that can easily be decoded >

Note: The decryption function should still output more or less wrong stuff for other than the above key.

link|improve this question
Belongs on codegolf.stackexchange.com – jcolebrand Feb 2 '11 at 18:14
feedback

6 Answers

up vote 1 down vote accepted

This just barely meets the criteria, but was a hell of a lot of fun to write. It's a console C# program. I'm going to be terse and let the code speak for itself. Or whimper to itself. I will only say that it doesn't encrypt at all, and the code was designed to sit on the line between really clever and really revolting.

Using the example input and key, the output is:

T0 bsdi9 4sbibh3edrac3e5s7 8a6e0r0c7e1s6 6t9 5yarfeav4 ctc 9t3e3r5c1e1s6ecgea0sasbedm9lfl1a0e4r4 f,b!fyc48b74f3e9af0

EDIT: I found a place I could have been more obscure, so the code has been slightly modified since the first post.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace BowlingEncryptor
{
    public static class Program
    {
        private static char[] resource = new[] { 'm', 'r', 'e', 's', ' ', 'f', 'l', 'g', 'n', 't', 'u', 'o', 'w' };

        public static void Main(string[] args)
        {
            bool encrypt = false;

            for (; ; ) {
                Console.Write("(E)ncrypt or (D)ecrypt? ");
                var mode = Console.ReadLine();

                if (mode == "E") {
                    encrypt = true;
                    break;
                } else if (mode == "D") {
                    encrypt = false;
                    break;
                }
            }

            Console.Write("Enter the message: ");
            var message = Console.ReadLine();

            Console.Write("Enter the key: ");
            var key = Console.ReadLine();

            Console.WriteLine("Result: " + (encrypt ? Encrypt(message, key) : Decrypt(message, key)));

            Console.ReadLine();
        }

        private static string Encrypt(string message, string key)
        {
            var and = Frobnicate(message);
            var theUgly = Frobnicate(key);

            var theGood = TheBad(and, theUgly);

            return theGood.Won();
        }

        private static IEnumerable<char> Frobnicate(IEnumerable<char> thinger)
        {
            using (var e = thinger.GetEnumerator()) {
                e.MoveNext();
                var f = e.Current;
                yield return f;

                int p = (f & 0xf) + 3;

                var s = new Stack<char>();
                for (; ; ) {
                    for (int x = 0; x < p; x++) {
                        if (!e.MoveNext())
                            goto MYPC;

                        s.Push(e.Current);
                    }

                    while (s.Count != 0)
                        yield return s.Pop();
                }

            MYPC:
                while (s.Count != 0)
                    yield return s.Pop();
            }
        }

        private static IEnumerable<T> TheBad<T>(IEnumerable<T> a, IEnumerable<T> b)
        {
            using (var aa = a.GetEnumerator())
            using (var bb = b.GetEnumerator()) {
                bool? maybe = true;

                while (maybe.HasValue) {
                    maybe = null;

                    if (aa.MoveNext()) {
                        maybe = false;
                        yield return aa.Current;
                    }

                    if (bb.MoveNext()) {
                        maybe = true;
                        yield return bb.Current;
                    }
                }
            }
        }

        private static void Daadle<T>(IEnumerable<T> oneFish, int twoFish, Daadler<T> redFish, Daadler<T> blueFish)
            where T : struct
        {
            int tl = oneFish.Count() - twoFish;

            using (var t = oneFish.GetEnumerator()) {
                if (t.MoveNext()) {
                    for (; ; ) {
                        if (tl != 0) {
                            tl--;
                            redFish = redFish(t.Current);
                            if (!t.MoveNext())
                                break;
                        }

                        if (twoFish != 0) {
                            twoFish--;
                            blueFish = blueFish(t.Current);
                            if (!t.MoveNext())
                                break;
                        }
                    }
                }
            }

            new Action(() => { redFish(null); blueFish(null); })();
        }

        private static Daadler<char> MakeDaddler(Action<string> arrv)
        {
            return p => {
                if (!p.HasValue)
                    return null;

                var line = new StringBuilder();

                int r = 3 + (p.Value & 0xf);
                line.Append(p);

                var c = new Stack<char>();
                Daadler<char> t = null;
                return t = x => {
                    if (x.HasValue)
                        c.Push(x.Value);

                    if (!x.HasValue || c.Count == r)
                        while (c.Count != 0)
                            line.Append(c.Pop());

                    if (!x.HasValue)
                        arrv(line.ToString());

                    return t;
                };
            };
        }

        private static string Decrypt(string message, string key)
        {
            var lutjanidae = "";
            var pomatomidae = "";

            Daadle(message, key.Length, MakeDaddler(fish => lutjanidae = fish), MakeDaddler(fish => pomatomidae = fish));

            if (pomatomidae.ToString() != key)
                return "" + resource[0] + resource[11] + resource[1] + resource[2] + resource[4] + resource[11] +
                    resource[1] + resource[4] + resource[6] + resource[2] + resource[3] + resource[3] +
                    resource[4] + resource[12] + resource[1] + resource[11] + resource[8] + resource[7] +
                    resource[4] + resource[3] + resource[9] + resource[10] + resource[5] + resource[5];

            return lutjanidae.ToString();
        }

        private static string Won(this IEnumerable<char> list)
        {
            var er = new StringBuilder();

            foreach (var j in list)
                er.Append(j);

            return er.ToString();
        }
    }

    public delegate Daadler<T> Daadler<T>(T? thinger) where T : struct;
}
link|improve this answer
feedback

Here's a first run of an attempt.

Usage:

$key = '09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa';
$message = 'This is a secret secret very secret message, really!';
$c = new BowlingEncryption();
$code = $c->encrypt($message, $key);
$result1 = $c->decrypt($code, 'wrongkey');
$result2 = $c->decrypt($code, $key); 

Then, $code is:

string(399) "¡²®å«Ç«¡«ª®å«Ç«¡«ª¯å«Ç«¡««¯å«Ç«¡­¬å«Ç«¡«ª¯å«Ç«¡««¯å«Ç«¡­¬å«Ç«¡³±å«Ç«¡­¬å«Ç«¡««¯å«Ç«¡«ª«å«Ç«¡³³å«Ç«¡««®å«Ç«¡«ª«å«Ç«¡««°å«Ç«¡­¬å«Ç«¡««¯å«Ç«¡«ª«å«Ç«¡³³å«Ç«¡««®å«Ç«¡«ª«å«Ç«¡««°å«Ç«¡­¬å«Ç«¡««²å«Ç«¡«ª«å«Ç«¡««®å«Ç«¡«¬«å«Ç«¡­¬å«Ç«¡««¯å«Ç«¡«ª«å«Ç«¡³³å«Ç«¡««®å«Ç«¡«ª«å«Ç«¡««°å«Ç«¡­¬å«Ç«¡«ª³å«Ç«¡«ª«å«Ç«¡««¯å«Ç«¡««¯å«Ç«¡³±å«Ç«¡«ª­å«Ç«¡«ª«å«Ç«¡®®å«Ç«¡­¬å«Ç«¡««®å«Ç«¡«ª«å«Ç«¡³±å«Ç«¡«ª²å«Ç«¡«ª²å«Ç«¡«¬«å«Ç«¡­­å«Ç«"

And $result1 is (With the wrong key):

string(0) ""

And $result2 is:

string(52) "This is a secret secret very secret message, really!"

class BowlingEncryption {

    public function encrypt($string, $key) {
        $mapping = $this->buildMapping($key);
        $hash = $this->hashRounds($string, $mapping);
        $crypt = $this->cryptRun($hash, $string, $key);
        return $crypt;
    }

    public function decrypt($string, $key) {
        $offset = abs(crc32($key)) % 128;
        $buffer2 = '';
        $len = strlen($string);
        for ($i = 0; $i < $len; $i++) {
            $val = ord($string[$i]);
            $buffer2 .= chr(($val - $offset) % 255);
        }
        $buffer = '';
        $last = '';
        $cnt = '';
        $len = strlen($buffer2);
        for ($i = 0; $i < $len; $i++) {
            $chr = $buffer2[$i];
            if (preg_match('/^\d$/', $chr)) {
                $cnt .= $chr;
            } else {
                for ($j = 0; $j < (int) $cnt; $j++) {
                    $buffer .= $last;
                }
                $last = $chr;
                $cnt = '';
            }
        }
        for ($j = 0; $j < (int) $cnt; $j++) {
            $buffer .= $last;
        }
        $mapping = $this->buildMapping($key);
        return $this->run($buffer, $mapping);
    }

    private function buildMapping($key) {
        $num = abs(crc32($key));
        return array(
            0 => chr($num % 12 + 33),
            1 => chr($num % 25 + 70),
            2 => chr($num % 25 + 100),
        );
    }    

    private function cryptRun($hash, $string, $key) {
        $len = strlen($hash);
        $buffer = '';
        $last = '';
        $cnt = '';
        for ($i = 0; $i < $len; $i++) {
           $chr = $hash[$i];
           if ($last == $chr) {
               $cnt++;
           } else {
               $buffer .= $last . $cnt;
               $cnt = 1;
           }
           $last = $chr;
        }
        $buffer .= $last . $cnt;
        $buffer2 = '';
        $len = strlen($buffer);
        $offset = abs(crc32($key)) % 128;
        for ($i = 0; $i < $len; $i++) {
            $val = ord($buffer[$i]);
            $buffer2 .= chr((($val + $offset) % 255));
        }
        return $buffer2;
    }

    private function hashRounds($string, $mapping) {
        $len = strlen($string);
        $buffer = '';
        for ($i = 0; $i < $len; $i++) {
            $value = ord($string[$i]);
            for ($j = 0; $j < $value; $j++) {
                $buffer .= $mapping[0];
            }
            $buffer .= $mapping[2];
            $buffer .= $mapping[1];
        }
        return $buffer;
    }
    private function run($string, $mapping) {
        $memory = 0;
        $len = strlen($string);
        $out = '';
        for ($i = 0; $i < $len; $i++) {
            switch($string[$i]) {
                case $mapping[0]:
                    $memory++;
                    break;
                case $mapping[1]:
                    $memory = 0;
                    break;
                case $mapping[2]:
                    $out .= chr($memory);
                    break;
            }
        }
        return $out;
    }
}

That's the encryption function. For giggle-value, here's the trivial decryption function:

public static function trivialDecrypt($string) {
    $value = ord($string[strlen($string) - 1]);
    $offset = 49 - $value;
    $buffer = '';
    for ($i = 0; $i < strlen($string); $i++) {
        $val = ord($string[$i]);
        $buffer .= chr(($val + $offset) % 255);
    }
    $key = $buffer[strlen($buffer) - 4];
    $matches = array();
    $regex = '/(\d+)'.$key.'/';
    preg_match_all($regex, $buffer, $matches);
    $output = '';
    foreach ($matches[1] as $match) {
        $output .= chr($match);
    }
    return $output;
}

As far as how it works, it first converts the string into a pesudo-brainfuck language (3 operators: increment memory, output memory, zero memory). The actual operators of the BF are determined by the key (based off of a crc32). Then it "compresses" the source code by replacing stretches of like characters (aaa) with a trivial compression (a3). Then, it rotates them according to another crc32 of the key.

Decoding just operates in reverse. It first rotates in the opposite direction, then it decompresses, and finally it runs the PBF code and returns the output.

The trivial decrypt function basically works by the fact that the last character in the rotated string will always be a 1. So it determines the offset, and then de-rotates the string. Then it just finds all the compressed numbers and outputs them directly (since this is a trivial BF program without loops, outputing an a will have 97 in a predictable location)...

link|improve this answer
feedback

HTML and javascript. See output at JSFiddle. Thanks to w3schools for allot of the code!

<html>
<head>
<script type="text/javascript">
var secret= "This is a secret secret very secret message, really!"
var key= "09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa"

function encript() {
  var length =secret.length;
  var myCars=new Array("Saab","Volvo","BMW"); // condensed array
  myCars = secret.substr(0,length).split('');
  for (x in myCars)
  {
  myCars[x] += key
  }


  secret = myCars.toString();
  return secret
}

function decript() {
  var i = 100000   // don't run too long!
  while (secret.search(key) && i-- > 0 ) 
    {
    secret = secret.replace(',','');  // remove unnecessary comma's
    secret = secret.replace(key,'');
    }
  return secret
}

</script>
</head>

<!-- keep user's from write-clicking to view-source -->
<body oncontextmenu="delete eval; return false;">
<form>
<h2>encripted:</h2>
<script type="text/javascript">
document.write(encript(secret).italics());

</script>

<h2>decripted:</h2>
<script type="text/javascript">
document.write(decript(encript(secret)).bold());

</script>

</form>

</body>
</html>
link|improve this answer
4  
I think you should totally drop that and use jQuery – Greg Jan 14 '11 at 22:24
1  
Sigh... as always, USE THE FREAKING hasOwnProperty!!!! – Ivo Wetzel Jan 14 '11 at 22:25
8  
@IvoWetzel I don't even know what you're talking about but I googoled w3cshools for hasOwnProperty() and it didn't even come up. Is that some non-standard javascirpt for mobile browsres or somethign? – Nathan Jan 14 '11 at 22:30
1  
Don't say the w word! – Ivo Wetzel Jan 14 '11 at 22:32
2  
didn't w3schools teach you that myCars[x] should be eval('myCars.' + x)? – GGG Dec 28 '11 at 5:05
feedback
if (input == "This is a secret secret very secret message, really!" && key == "09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa"){
    return "piweh9372fwel297fd";
}else if (input == "This is a secret secret very secret message, really!!" && key == "09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa"){
    return "wefwef2424wef";
}else if (input == "This is a secret secret very secret message, really!!!" && key == "09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa"){
    return "efwefwewffweefefefw";
}

etc

link|improve this answer
feedback
var base64 = {
  encode: function(string, times) {
    if (!times || times == 1) return btoa(string);
    for (var i = 0; i < times; i++) {
      var string = btoa(string);
    }
    return string;
  },
  decode: function(string, times) {
    if (!times || times == 1) return atob(string);
    for (var i = 0; i < times; i++) {
      var string = atob(string);
    }
    return string;
  }
}

Base64 Encoder/Decoder – jsFiddle

Actually, it's a bit different from the others, since I don't use a key, but if I encode something 10 times, I need to decode it 10 times to get the original text.

link|improve this answer
feedback

Most obscure, horrific way to encode string with as little security as possible? You were asking for it! Using linux console:

MESSAGE='This is a secret secret very secret message, really!'
KEY="09dbbb4ad3753068170966fa5c4a39c153c61a0e9db01ff44cfbb84f479e30fa"

Encryption

ENCRYPTED="$KEY$MESSAGE"

Decryption

DECRYPTED=`echo "$ENCRYPTED" | sed s/^$KEY//`

Note that the decryption will fail when using different key - you will not get the original message :-)

You think this is not much secure? OK:

echo $MESSAGE | sed 's/\(.\)/\1\n/g' > msg
echo $KEY | sed 's/\(.\)/\1\n/g' > key
ENCRYPTED=`paste -d ";" msg key | sed -n '1h;1!H;${g;s/\n/;/gp}'`

The encrypted message:

T;0;h;9;i;d;s;b; ;b;i;b;s;4; ;a;a;d; ;3;s;7;e;5;c;3;r;0;e;6;t;8; ;1;s;7;e;0;c;9;r;6;e;6;t;f; ;a;v;5;e;c;r;4;y;a; ;3;s;9;e;c;c;1;r;5;e;3;t;c; ;6;m;1;e;a;s;0;s;e;a;9;g;d;e;b;,;0; ;1;r;f;e;f;a;4;l;4;l;c;y;f;!;b;;b;;8;;4;;f;;4;;7;;9;;e;;3;;0;;f;;a;;

Decryption:

DECRYPTED=`echo "$ENCRYPTED" | sed 's/\(.\);.\?;/\1/g;s/;.*//'`

Oh my, I forgot! Decryption shouldn't work with other keys! So just add the following code:

KEY_CHECK=`echo "$ENCRYPTED" | sed 's/\([^;]\?;[^;]\?;\)/\1\n/g' | 
    cut -f 2 -d \; | sed -n '1h;1!H;${g;s/\n//gp}'`

[ "$KEY" != "$KEY_CHECK" ] && echo 'Decryption failed!'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.