Conditions | 4 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 4.25 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 1 | public static function generateSalt($length = self::DEFAULT_SALTLEN) |
|
21 | { |
||
22 | 1 | if (!is_int($length) || $length < 0 || $length > 128) { |
|
23 | throw new \RuntimeException('Invalid salt length, should be between 0 - 128 bytes'); |
||
24 | } |
||
25 | |||
26 | 1 | return new Buffer(random_bytes($length)); |
|
27 | } |
||
28 | |||
41 |