Q:

php sha256

echo hash('sha256', $_POST['ppasscode']);
0
$password = 'test123';

/*
	Always use salt for security reasons.
    I'm using the BCRYPT algorithm use any valid one you like.
*/
$options['salt'] = 'usesomesillystringforsalt';
$options['cost'] = 3;
echo password_hash($password, PASSWORD_BCRYPT, $options)
3

<?php
echo hash('ripemd160', 'The quick brown fox jumped over the lazy dog.');
?>

2

Tags

New to Communities?

Join the community