Answers for "text to sha256 converter in laravel"

PHP
0

text to sha256 converter in laravel

$hash = Hash::make('secret');

$input = 'secret';
if(Hash::check($input, $hash)){
    // the input matches the secret
}
Posted by: Guest on March-15-2021

Code answers related to "text to sha256 converter in laravel"

Browse Popular Code Answers by Language