관리-도구
편집 파일: OkpKeysetGeneratorCommand.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 function is_string; 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 OkpKeysetGeneratorCommand extends GeneratorCommand { protected function configure(): void { parent::configure(); $this ->setName('keyset:generate:okp') ->setDescription('Generate a key set with Octet Key Pairs keys (JWKSet format)') ->addArgument('quantity', InputArgument::REQUIRED, 'Quantity of keys in the key set.') ->addArgument('curve', InputArgument::REQUIRED, 'Curve of the keys.') ; } /** * @throws InvalidArgumentException if the curve is not valid * @throws InvalidArgumentException if the quantity 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; } $curve = $input->getArgument('curve'); if ($quantity < 1) { throw new InvalidArgumentException('Invalid quantity'); } if (!is_string($curve)) { throw new InvalidArgumentException('Invalid curve'); } $keyset = new JWKSet([]); for ($i = 0; $i < $quantity; ++$i) { $args = $this->getOptions($input); $keyset = $keyset->with(JWKFactory::createOKPKey($curve, $args)); } $this->prepareJsonOutput($input, $output, $keyset); return 0; } }