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