consul/command/keygen/keygen.go

69 lines
1.3 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
[COMPLIANCE] License changes (#18443) * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-11 13:12:13 +00:00
// SPDX-License-Identifier: BUSL-1.1
package keygen
2013-12-31 21:06:33 +00:00
import (
"crypto/rand"
"encoding/base64"
"flag"
2013-12-31 21:06:33 +00:00
"fmt"
"github.com/hashicorp/consul/command/flags"
"github.com/mitchellh/cli"
2013-12-31 21:06:33 +00:00
)
func New(ui cli.Ui) *cmd {
c := &cmd{UI: ui}
c.init()
return c
}
type cmd struct {
UI cli.Ui
flags *flag.FlagSet
help string
2013-12-31 21:06:33 +00:00
}
func (c *cmd) init() {
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
c.help = flags.Usage(help, c.flags)
}
func (c *cmd) Run(args []string) int {
if err := c.flags.Parse(args); err != nil {
return 1
}
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
}
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
}
func (c *cmd) Synopsis() string {
return synopsis
}
func (c *cmd) Help() string {
return c.help
}
const synopsis = "Generates a new encryption key"
const help = `
Usage: consul keygen
2013-12-31 21:06:33 +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
in the proper format that the agent expects.
`