2024-04-11 03:42:38 +00:00
|
|
|
/*
|
|
|
|
Copyright © 2024 Steven Polley <himself@stevenpolley.net>
|
|
|
|
*/
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"deadbeef.codes/steven/hyp/otphyp"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
// secretCmd represents the secret command
|
|
|
|
var secretCmd = &cobra.Command{
|
|
|
|
Use: "secret",
|
|
|
|
Short: "Generates a secret key for hyp",
|
|
|
|
Long: `Generates a secret for hyp which should be distributed to both the
|
|
|
|
server and to clients.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2024-04-17 01:43:39 +00:00
|
|
|
hypd generate secret > hyp.secret`,
|
2024-04-11 03:42:38 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
sharedSecret, err := otphyp.GenerateSecret()
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("failed to generate shared secret: %w", err))
|
|
|
|
}
|
|
|
|
fmt.Println(sharedSecret)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
generateCmd.AddCommand(secretCmd)
|
|
|
|
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
|
|
// and all subcommands, e.g.:
|
|
|
|
// secretCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
|
|
// is called directly, e.g.:
|
|
|
|
// secretCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
|
|
}
|