From 10072e494885ea3fe87e000c0a04f763daa00880 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sun, 7 Nov 2021 17:34:03 +0100 Subject: [PATCH] Changed default password length to 24 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index a495f03..46d0453 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -30,7 +30,7 @@ int main(int argc, char* argv[]) { std::string digits {"0123456789"}; std::string symbols {"_-=+<>,.!@#$%^&*"}; std::string valid; - int len {12}; + int len {24}; bool noflags {true}; int opt_char, opt_val; struct option long_options[] = {