1 | <?php |
||
8 | * Implements AES cipher with 128-bit key size. |
||
9 | */ |
||
10 | class AES128Cipher extends AESCipher |
||
11 | { |
||
12 | /** |
||
13 | * |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | 31 | protected function _cipherName(): string |
|
20 | |||
21 | /** |
||
22 | * |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 32 | protected function _keySize(): int |
|
26 | { |
||
27 | 32 | return 16; |
|
28 | } |
||
30 |