| 1 | <?php |
||
| 16 | final class DecrypterFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param string[] $algorithms |
||
| 20 | * @param \Jose\Payload\PayloadConverterInterface[] $payload_converters |
||
| 21 | * @param string[] $compression_methods |
||
| 22 | * @param \Jose\Checker\CheckerInterface[] $checker_managers |
||
| 23 | * |
||
| 24 | * @return \Jose\DecrypterInterface |
||
| 25 | */ |
||
| 26 | public static function createDecrypter(array $algorithms, array $payload_converters = [], array $compression_methods = ['DEF'], array $checker_managers = []) |
||
| 35 | } |
||
| 36 |