Generate SHA-512/256 Hash using PHP March 2, 2021 PHP 0 Comments 605 Views hash function <?php $text = 'Hello'; $digest = hash('sha512/256', $text); echo $digest;
Leave a Comment
Cancel reply