Dcrypt\Hash::cost PHP Method

cost() private static method

Return a normalized cost value.
private static cost ( integer $cost ) : integer
$cost integer Number of iterations to use.
return integer
    private static function cost($cost)
    {
        return $cost % \pow(2, 32);
    }