Generate SHA3-224 Hash using PHP

hash function

<?php

$text = 'Hello';
$digest = hash('sha3-224', $text);

echo $digest;

Leave a Comment

Cancel reply

Your email address will not be published.