45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
|
/*
|
||
|
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:
|
||
|
|
||
|
hypd generatesecret > hyp.secret`,
|
||
|
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")
|
||
|
}
|