MD5 sampler

Here’s a little MD5 hash generator to play with…

“;
echo “
Enter text to hash:

“;
echo ” “;
echo ““;
echo ““;
echo “

“;

$os = $_POST[‘os’];
if($os==”ds”) {
$plaintext = $_POST[‘myplaintext’];
echo “

That produces an MD5 hash of:
“;
echo md5($plaintext);
echo “
“;

}

?>

Comments are closed.