Guten Morgen,
Ich will mit der str_replace Funktion einen kleinen Cryptographie Tool machen, folgendes Script habe ich gemacht:
Aber beim verschlüsseln oder entschlüsseln funktioniert etwas nicht richtig, hier das Beispiel!
http://www.uliweb.ch/kryptographie/index.php
Vielen Dank
mfg
Daniel
Ich will mit der str_replace Funktion einen kleinen Cryptographie Tool machen, folgendes Script habe ich gemacht:
PHP:
<?PHP
$action = $_GET['action'];
$codearray = 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", " ", ".", ",", "?", "!", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "ä", "ö", "ü");
$decodearray = array("f", "g", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "a", "b", "c", "d", "e", "ö", "ä", "ü", "%", "&", "*", "/", "+", "-", "ç", ".", ",", "_", "2", "!", "8", "?", "3", "4");
if ($action == "encode") {
$text1 = $_POST['text1'];
$text2 = str_replace($codearray, $decodearray, $text1);
}
if ($action == "decode") {
$text2 = $_POST['text2'];
$text1 = str_replace($decodearray, $codearray, $text2);
}
if (empty($action)) {
$text1 = "";
$text2 = "";
}
?>
Aber beim verschlüsseln oder entschlüsseln funktioniert etwas nicht richtig, hier das Beispiel!
http://www.uliweb.ch/kryptographie/index.php
Vielen Dank
mfg
Daniel