Versies vergeleken

Uitleg

  • Deze regel is toegevoegd.
  • Deze regel is verwijderd.
  • Opmaak is veranderd.

...

Code Block
function customHash($key, $salt="Genius")
{
	$key +.= $salt;
	return hash( "crc32b", $key);
}

$key = "Chun Kang";
echo customHash("crc32b", $key);

...