Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | class A128KWAlgorithm extends AESKWAlgorithm |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 6 | public function algorithmParamValue(): string |
|
22 | { |
||
23 | 6 | return JWA::ALGO_A128KW; |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 16 | protected function _kekSize(): int |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 12 | protected function _AESKWAlgo(): AESKeyWrapAlgorithm |
|
40 | } |
||
41 | } |
||
42 |