diff --git a/README.md b/README.md index b9265fe..38ae33b 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ detergen uses [Argon2id](https://en.wikipedia.org/wiki/Argon2), the winner of th - **Time cost:** 3 iterations - **Memory cost:** 256 MB - **Parallelism:** 4 threads -- **Output:** 32 bytes +- **Output:** 64 bytes **Password generation process:** 1. Combine the base word and salt into a single input diff --git a/cmd/root.go b/cmd/root.go index 82681dd..7a8a9b8 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -55,8 +55,4 @@ func init() { // will be global for your application. // rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.detergen.yaml)") - - // Cobra also supports local flags, which will only run - // when this action is called directly. - rootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") }