text to sha256 converter in laravel

Solutions on MaxInterview for text to sha256 converter in laravel by the best coders in the world

showing results for - "text to sha256 converter in laravel"
Tommaso
16 Jan 2019
1$hash = Hash::make('secret');
2
3$input = 'secret';
4if(Hash::check($input, $hash)){
5    // the input matches the secret
6}
7