| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/aix/libraries/vendor/web-token/jwt-library/Encryption/ |
Upload File : |
<?php
declare(strict_types=1);
namespace Jose\Component\Encryption;
use InvalidArgumentException;
use function array_key_exists;
/**
* @internal
*/
final class Recipient
{
public function __construct(
private readonly array $header,
private readonly ?string $encryptedKey
) {
}
/**
* Returns the recipient header.
*/
public function getHeader(): array
{
return $this->header;
}
/**
* Returns the value of the recipient header parameter with the specified key.
*
* @param string $key The key
*
* @return mixed|null
*/
public function getHeaderParameter(string $key)
{
if (! $this->hasHeaderParameter($key)) {
throw new InvalidArgumentException(sprintf('The header "%s" does not exist.', $key));
}
return $this->header[$key];
}
/**
* Returns true if the recipient header contains the parameter with the specified key.
*
* @param string $key The key
*/
public function hasHeaderParameter(string $key): bool
{
return array_key_exists($key, $this->header);
}
/**
* Returns the encrypted key.
*/
public function getEncryptedKey(): ?string
{
return $this->encryptedKey;
}
}