Message-Digest Algorithm 5
Datei md5hash.php mit folgendem Inhalt erzeugen:
<?php
$password = 'MyPassword';
$salt = mt_rand( 10000, 99999 );
$encrypted = 'salt:' . $salt . ' md5:' . md5( $salt . $password );
echo $encrypted;
?>
code snippets, served virtually
Message-Digest Algorithm 5
Datei md5hash.php mit folgendem Inhalt erzeugen:
<?php
$password = 'MyPassword';
$salt = mt_rand( 10000, 99999 );
$encrypted = 'salt:' . $salt . ' md5:' . md5( $salt . $password );
echo $encrypted;
?>