PHP 8.5.0 Alpha 2 available for testing

Voting

: seven minus four?
(Example: nine)

The Note You're Voting On

alex at milivojevic dot org
20 years ago
Regarding my previous comment, if you want to be on the safe side and use only ASCII printable seeds (shouldn't matter for SSHA seeds), something like this could be used:

<?php
$salt
= substr(base64_encode(pack("H*", sha1(mt_rand()))), 0, 4);
?>

<< Back to user notes page

To Top