Hash: A.FCAGGBFGFDCAFE+AEG
The source code:
- Code: Select all
<?php
// L2N - one of the functions for L2L
function l2n1($origtext) {
$old = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '!', '?', '"', ',', ':', ';', '.', '`', "'", '+', '-', '*', '÷', '@', '#', '$', '%', '^', '&', '(', ')', '{', '}', '[', ']', '/');
$new = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52');
$enctext = str_replace($old, $new, $origtext);
return $enctext;
}
// N2L - another function for L2L
function n2l1($origtext) {
$old = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '!', '?', '"', ',', ':', ';', '.', '`', "'", '+', '-', '*', '÷', '@', '#', '$', '%', '^', '&', '(', ')', '{', '}', '[', ']', '/');
$new = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52');
$enctext = str_replace($new, $old, $origtext);
return $enctext;
}
// L2L - the big one.
function l2l($origtext) {
$lettersnsymbols = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '!', '?', '"', ',', ':', ';', '.', '`', "'", '+', '-', '*', '÷', '@', '#', '$', '%', '^', '&', '(', ')', '{', '}', '[', ']', '/');
$one = n2l1($origtext);
$two = strrev($one);
$three = l2n1($two);
$four = ereg_replace("[^A-Za-z0-9]", "", $three );
$five = str_replace($lettersnsymbols, '', $four );
$six_one = strlen($five);
$six_two = $five * $six_one;
$seven = $six_two / 2;
$eight = n2l1($seven);
return $eight;
}
?>
I made this so long ago, I'm not even sure if it's possible to get the original message back.
Anyway, go ahead and tell me what you get if you feel like it. BTW if this is breaking some kind of rule I didn't see, I'll go ahead and remove this.
PS: If you don't believe I made this encryption and think that I'm trying to get you to help me with something illegal, think:
How would I get the encryption source? Google L2L encryption and you'll find nothing but lan-to-lan stuff
--edit--
Good point, so I guess I'll go ahead and give you the length of $five and see if that helps..Though you wouldn't normally get this in that kind of situation.
Length: 156
Unless you don't want to do this, anyway. This is just something for practice/geek fun. (Yes I just called myself a geek.)
--edit2--
I guess I might want to take this down since it has no point and seems to be more difficult than I expected.....How do I take this down? lol






