Jose\Util\JWELoader::getRecipientEncryptedKey PHP Метод

getRecipientEncryptedKey() приватный статический Метод

private static getRecipientEncryptedKey ( array $data ) : null | string
$data array
Результат null | string
    private static function getRecipientEncryptedKey(array $data)
    {
        if (array_key_exists('encrypted_key', $data)) {
            return Base64Url::decode($data['encrypted_key']);
        }
    }