| 1 | <?php |
||
| 16 | final class EncrypterFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param string[] $algorithms |
||
| 20 | * @param \Jose\Payload\PayloadConverterInterface[] $payload_converters |
||
| 21 | * @param string[] $compression_methods |
||
| 22 | * |
||
| 23 | * @return \Jose\EncrypterInterface |
||
| 24 | */ |
||
| 25 | public static function createEncrypter(array $algorithms, array $payload_converters = [], array $compression_methods = ['DEF']) |
||
| 33 | } |
||
| 34 |