-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
OkpKeyGeneratorCommand.php
39 lines (31 loc) · 1.1 KB
/
OkpKeyGeneratorCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
namespace Jose\Component\Console;
use InvalidArgumentException;
use function is_string;
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 OkpKeyGeneratorCommand extends GeneratorCommand
{
protected static $defaultName = 'key:generate:okp';
protected function configure(): void
{
parent::configure();
$this->setDescription('Generate an Octet Key Pair key (JWK format)')
->addArgument('curve', InputArgument::REQUIRED, 'Curve of the key.')
;
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$curve = $input->getArgument('curve');
if (! is_string($curve)) {
throw new InvalidArgumentException('Invalid curve');
}
$args = $this->getOptions($input);
$jwk = JWKFactory::createOKPKey($curve, $args);
$this->prepareJsonOutput($input, $output, $jwk);
return 0;
}
}