Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | abstract class PBES1PKCS5AlgorithmIdentifier extends PBES1AlgorithmIdentifier |
||
11 | { |
||
12 | /** |
||
13 | * Constructor. |
||
14 | * |
||
15 | * @param string $salt Salt |
||
16 | * @param int $iteration_count Iteration count |
||
17 | * |
||
18 | * @throws \UnexpectedValueException |
||
19 | */ |
||
20 | 14 | public function __construct(string $salt, int $iteration_count) |
|
28 |