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
|
package key
import (
"github.com/urfave/cli"
)
// Command returns the jwk subcommand.
func Command() cli.Command {
return cli.Command{
Name: "key",
Usage: "manage keys",
UsageText: "step crypto key SUBCOMMAND [ARGUMENTS] [GLOBAL_FLAGS] [SUBCOMMAND_FLAGS]",
Description: `**step crypto key** command group provides facilities for
managing cryptographic keys.
## EXAMPLES
Convert PEM format to PKCS8.
'''
$ step crypto key format foo-key.pem
'''
`,
Subcommands: cli.Commands{
formatCommand(),
publicCommand(),
inspectCommand(),
fingerprintCommand(),
},
}
}
|