add($serializer); } } /** * Return the serializer names supported by the manager. * * @return string[] */ public function names(): array { return array_keys($this->serializers); } /** * Converts a JWE into a string. * Throws an exception if none of the serializer was able to convert the input. * * @throws InvalidArgumentException if the serializer is not supported */ public function serialize(string $name, JWE $jws, ?int $recipientIndex = null): string { if (!isset($this->serializers[$name])) { throw new InvalidArgumentException(sprintf('Unsupported serializer "%s".', $name)); } return $this->serializers[$name]->serialize($jws, $recipientIndex); } /** * Loads data and return a JWE object. * Throws an exception if none of the serializer was able to convert the input. * * @param string $input A string that represents a JWE * @param null|string $name the name of the serializer if the input is unserialized * * @throws InvalidArgumentException if the input cannot be loaded */ public function unserialize(string $input, ?string &$name = null): JWE { foreach ($this->serializers as $serializer) { try { $jws = $serializer->unserialize($input); $name = $serializer->name(); return $jws; } catch (InvalidArgumentException $e) { continue; } } throw new InvalidArgumentException('Unsupported input.'); } /** * Adds a serializer to the manager. */ private function add(JWESerializer $serializer): void { $this->serializers[$serializer->name()] = $serializer; } }