From aa015a39f146f8670ef94d5cac94df906d265451 Mon Sep 17 00:00:00 2001 From: Daniel Togey Date: Fri, 12 Dec 2025 19:35:29 +0300 Subject: [PATCH 1/2] update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From b3c66efaf15c6139bc29bbc9602f5ff94f0704c4 Mon Sep 17 00:00:00 2001 From: Daniel Togey Date: Fri, 12 Dec 2025 19:35:51 +0300 Subject: [PATCH 2/2] remove unused toggle flag from root.go --- cmd/root.go | 4 ---- 1 file changed, 4 deletions(-) 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") }