Dup Goto 📝

HashFunctions

PT2/aw/lang/php php hash 07-31 13:46:41
To Pop
8 lines, 21 words, 162 chars Monday 2023-07-31 13:46:41
<?php
$input = "hello world";
$md5 = hash("md5",$input);
$sha256 = hash("sha256",$input);
echo "$input MD5=> $md5\n";
echo "$input SHA256=> $sha256\n";