1 | <?php |
||
16 | class A256GCMAlgorithm extends AESGCMAlgorithm |
||
17 | { |
||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | */ |
||
21 | 3 | public function encryptionAlgorithmParamValue(): string |
|
22 | { |
||
23 | 3 | return JWA::ALGO_A256GCM; |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 7 | public function keySize(): int |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | 6 | protected function _getGCMCipher(): Cipher |
|
40 | } |
||
41 | } |
||
42 |