lang/php/ HashFunctions
<?php
$input = "hello world";
$md5 = hash("md5",$input);
$sha256 = hash("sha256",$input);
echo "$input MD5=> $md5\n";
echo "$input SHA256=> $sha256\n";
<?php
$input = "hello world";
$md5 = hash("md5",$input);
$sha256 = hash("sha256",$input);
echo "$input MD5=> $md5\n";
echo "$input SHA256=> $sha256\n";