Changed default password length to 24

This commit is contained in:
Bob Polis 2021-11-07 17:34:03 +01:00
parent 5ed49c6374
commit 10072e4948

View File

@ -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[] = {