2017-10-11 12:51:25 +00:00
|
|
|
package keygen
|
2013-12-31 21:06:33 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"encoding/base64"
|
2017-10-11 12:51:25 +00:00
|
|
|
"flag"
|
2013-12-31 21:06:33 +00:00
|
|
|
"fmt"
|
2017-10-11 12:51:25 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/command/flags"
|
|
|
|
"github.com/mitchellh/cli"
|
2013-12-31 21:06:33 +00:00
|
|
|
)
|
|
|
|
|
2017-10-11 12:51:25 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
2017-10-11 22:02:31 +00:00
|
|
|
c.init()
|
2017-10-11 12:51:25 +00:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2013-12-31 21:06:33 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 22:02:31 +00:00
|
|
|
func (c *cmd) init() {
|
2017-10-11 12:51:25 +00:00
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2017-10-11 12:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2017-02-08 22:19:17 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2019-07-30 15:45:41 +00:00
|
|
|
key := make([]byte, 32)
|
2013-12-31 21:06:33 +00:00
|
|
|
n, err := rand.Reader.Read(key)
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error reading random data: %s", err))
|
2013-12-31 21:06:33 +00:00
|
|
|
return 1
|
|
|
|
}
|
2019-07-30 15:45:41 +00:00
|
|
|
if n != 32 {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Couldn't read enough entropy. Generate more entropy!"))
|
2013-12-31 21:06:33 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Output(base64.StdEncoding.EncodeToString(key))
|
2013-12-31 21:06:33 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:25 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
2017-10-17 13:44:20 +00:00
|
|
|
return synopsis
|
2017-10-11 12:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
2017-10-17 13:44:20 +00:00
|
|
|
return c.help
|
2017-10-11 22:02:31 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
const synopsis = "Generates a new encryption key"
|
|
|
|
const help = `
|
|
|
|
Usage: consul keygen
|
2013-12-31 21:06:33 +00:00
|
|
|
|
2019-07-30 15:45:41 +00:00
|
|
|
Generates a new 32-byte encryption key that can be used to configure the
|
2013-12-31 21:06:33 +00:00
|
|
|
agent to encrypt traffic. The output of this command is already
|
2017-10-17 13:44:20 +00:00
|
|
|
in the proper format that the agent expects.
|
|
|
|
`
|