Failed Conditions
Push — master ( 6aefc6...e9b4ba )
by Florent
02:15
created

EcKeyGeneratorCommand::isEnabled()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * The MIT License (MIT)
7
 *
8
 * Copyright (c) 2014-2017 Spomky-Labs
9
 *
10
 * This software may be modified and distributed under the terms
11
 * of the MIT license.  See the LICENSE file for details.
12
 */
13
14
namespace Jose\Component\Console;
15
16
use Jose\Component\KeyManagement\JWKFactory;
17
use Symfony\Component\Console\Input\InputArgument;
18
use Symfony\Component\Console\Input\InputInterface;
19
use Symfony\Component\Console\Output\OutputInterface;
20
21
/**
22
 * Class EcKeyGeneratorCommand.
23
 */
24
final class EcKeyGeneratorCommand extends GeneratorCommand
25
{
26
    /**
27
     * {@inheritdoc}
28
     */
29
    protected function configure()
30
    {
31
        parent::configure();
32
        $this
33
            ->setName('key:generate:ec')
34
            ->setDescription('Generate an EC key (JWK format)')
35
            ->addArgument('curve', InputArgument::REQUIRED, 'Curve of the key.');
36
    }
37
38
    /**
39
     * {@inheritdoc}
40
     */
41
    protected function execute(InputInterface $input, OutputInterface $output)
42
    {
43
        $curve = $input->getArgument('curve');
44
        $args = $this->getOptions($input);
45
46
        $jwk = JWKFactory::createECKey($curve, $args);
47
        $this->prepareJsonOutput($input, $output, $jwk);
48
    }
49
}
50