관리-도구
편집 파일: OctKeysetGeneratorCommand.php
<?php declare(strict_types=1); /* * The MIT License (MIT) * * Copyright (c) 2014-2020 Spomky-Labs * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. */ namespace Jose\Component\Console; use InvalidArgumentException; use function is_array; use Jose\Component\Core\JWKSet; use Jose\Component\KeyManagement\JWKFactory; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; final class OctKeysetGeneratorCommand extends GeneratorCommand { protected function configure(): void { parent::configure(); $this ->setName('keyset:generate:oct') ->setDescription('Generate a key set with octet keys (JWK format)') ->addArgument('quantity', InputArgument::REQUIRED, 'Quantity of keys in the key set.') ->addArgument('size', InputArgument::REQUIRED, 'Key size.') ; } /** * @throws InvalidArgumentException if the quantity is not valid * @throws InvalidArgumentException if the key size is not valid */ protected function execute(InputInterface $input, OutputInterface $output): int { $quantity = $input->getArgument('quantity'); if (null === $quantity) { $quantity = 1; } elseif (is_array($quantity)) { $quantity = 1; } else { $quantity = (int) $quantity; } $size = $input->getArgument('size'); if (null === $size) { $size = 1; } elseif (is_array($size)) { $size = 1; } else { $size = (int) $size; } if ($quantity < 1) { throw new InvalidArgumentException('Invalid quantity'); } if ($size < 1) { throw new InvalidArgumentException('Invalid size'); } $keyset = new JWKSet([]); for ($i = 0; $i < $quantity; ++$i) { $args = $this->getOptions($input); $keyset = $keyset->with(JWKFactory::createOctKey($size, $args)); } $this->prepareJsonOutput($input, $output, $keyset); return 0; } }