| 1 | <?php |
||
| 16 | final class JWEFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param mixed $payload |
||
| 20 | * @param array $shared_protected_headers |
||
| 21 | * @param array $shared_headers |
||
| 22 | * @param null|string $aad |
||
| 23 | * |
||
| 24 | * @return \Jose\Object\JWEInterface |
||
| 25 | */ |
||
| 26 | public static function createJWE($payload, array $shared_protected_headers = [], array $shared_headers = [], $aad = null) |
||
| 39 | } |
||
| 40 |