Generate SHA-1 Hash using PHP

sha1 function

<?php

$text = 'Hello';
$digest = sha1($text);

echo $digest;

Leave a Comment

Cancel reply

Your email address will not be published.