crc32 is potentially reversible

This commit is contained in:
zotlabs 2018-06-25 13:33:23 -07:00
parent f66fb8e2a8
commit 66fc12c928

View File

@ -679,7 +679,7 @@ function logid() {
$x = session_id(); $x = session_id();
if(! $x) if(! $x)
$x = getmypid(); $x = getmypid();
return hash('crc32',$x); return substr(hash('whirlpool',$x),0,10);
} }
/** /**