I have a list of passwords in mySQL that are generated using
$hash = \'{SHA}\' . base64_encode(sha1(\'some string here\', true));
I need t
$binary = base64_decode(substr($hash, 5)); $hex = bin2hex($binary);