Posts

Showing posts with the label Drafts

Simple hash function for php (none md[4 or 5])

function SimpleHash($s){ $i = 0;$l=strlen($s) for ($j=0; $j return 'a'.base_convert(($i+$l),10,16).'c'; }