mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
15 lines
No EOL
283 B
PHP
15 lines
No EOL
283 B
PHP
<?php
|
|
|
|
function hash_salt(string $input, string $salt)
|
|
{
|
|
$output = hash('sha512',$input,true);
|
|
$len=strlen(bin2hex($output))/2;
|
|
$xor_hash = "";
|
|
for($i = 0; $i < $len; $i++)
|
|
{
|
|
$xor_hash .= $output[$i] ^ $salt[$i];
|
|
}
|
|
|
|
return hash('sha512',$xor_hash,false);
|
|
}
|
|
?>
|