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)...