phpbar.de logo

Mailinglisten-Archive

Re: [php]Verschlüsselung_/_Augenwischerei

Re: [php]Verschlüsselung_/_Augenwischerei

mhe mhe at ltcgroup.de
Fre Nov 7 15:47:51 CET 2003


>Mir sind bisher schonmal zwei Begriffe begenet, md5 und base64, von 
>ersterem weiss ich lt. manual dass es nicht umkehrbar ist (nicht 
>gewünscht und dauch nicht praktikabel) und base64 nimmt man ja 
>eigentlich eher für das dekodieren von Anhängen an mails.
>
>Gesucht sind also ähnliche, umkehrbare Verschlüsselsungsfunktionen oder 
>ganz andere nette Ideen.

rot13 ist da ganz simple,

http://de2.php.net/strtr
=================================
symlink23-remove-my-spleen at yahoo dot com
19-Apr-2002 03:33 
As noted in the str_rot13 docs, some servers don't provide the str_rot13() function. However, the presence of strtr makes it easy to build your own facsimile thereof:

if (!function_exists('str_rot13')) {
    function str_rot13($str) {
        $from = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $to   = 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM';

        return strtr($str, $from, $to);
    }
}

This is suitable for very light "encryption" such as hiding email addressess from spambots (then unscrambling them in a mail class, for example).

$mail_to=str_rot13("$mail_to"); 

=================================

jemand der sich etwas damit auskennt sieht schnell, das es rot13 ist,
anyway .. sollte reichen ..

auf jedenfall haenge eine pruefsumme mit nem secret noch an die info dran,
das niemand was injecten kann ..

ciao
 Mathias


php::bar PHP Wiki   -   Listenarchive