<?php
function myk($hasher,$randstr)
{
$salt = "ckmkc";
$salt = hash("sha3-512","cndnvdfnv". $salt);
return hash($hasher,$randstr . $salt);
}