Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class AES128Cipher extends AESCipher |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | 29 | protected function _cipherName(): string |
|
18 | } |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | 24 | protected function _nativeCipherName(): string |
|
24 | { |
||
25 | 24 | return 'aes-128-gcm'; |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 54 | protected function _keySize(): int |
|
34 | } |
||
35 | } |
||
36 |