Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class PBES2HS512A256KWAlgorithm extends PBES2Algorithm |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 4 | public function algorithmParamValue(): string |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 3 | protected function _hashAlgo(): string |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 3 | protected function _keyLength(): int |
|
38 | { |
||
39 | 3 | return 32; |
|
40 | } |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 4 | protected function _kwAlgo(): AESKeyWrapAlgorithm |
|
48 | } |
||
49 | } |
||
50 |