I hashing my password using below method in PHP
$password=hash('sha256','123');
Now i want to decode it, how it is possible? I doesn't use any key or salt.
<?php
$password=hash('sha256','123');
echo $password;
$decdoe=base64_decode($password);
echo $decdoe;
?>