Voting

: four minus one?
(Example: nine)

The Note You're Voting On

remi at php dot net
5 months ago
The crypt_gensalt function (from the xpass extension) makes usage of this function much easier, ex:

<?php

$salt
= crypt_gensalt(CRYPT_PREFIX_BLOWFISH, 10);
$hash = crypt($secret, $salt);

<< Back to user notes page

To Top