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