<?php
$str = rand();
$result = hash("sha256", $str);
echo "Hello from Softhunt.net";
echo $result;
?>
<?php
$str=rand();
$result = sha1($str);
echo "Hello from Softhunt.net";
echo $result;
?>
<?php
$str=rand();
$result = md5($str);
echo "Hello from Softhunt.net";
echo $result;
?>