Skip to content

Commit

Permalink
fix description salt command
Browse files Browse the repository at this point in the history
  • Loading branch information
martinusso committed Dec 27, 2019
1 parent 74ca25d commit 5746baf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/salt.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var (

saltCmd = &cobra.Command{
Use: "salt password",
Short: "Generate a random password",
Long: `Generate a random password`,
Short: "Generate a random and unique salt and hash for passwords",
Long: `Generate a random and unique salt and hash for passwords`,
Run: func(cmd *cobra.Command, args []string) {
p, h, s := generateSalt(args)
fmt.Println(fmt.Sprintf("Password: %s\nHash: %s\nSalt: %s", p, h, s))
Expand Down

0 comments on commit 5746baf

Please sign in to comment.