Dup Ver Goto 📝

HashFunctions

PT2/aw/lang/php php hash does not exist
To
8 lines, 21 words, 162 chars Page 'HashFunctions' does not exist.
<?php
$input = "hello world";
$md5 = hash("md5",$input);
$sha256 = hash("sha256",$input);
echo "$input MD5=> $md5\n";
echo "$input SHA256=> $sha256\n";