mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 07:18:47 +00:00
feat: extend password options
This commit is contained in:
@@ -22,9 +22,32 @@ runner = CliRunner()
|
||||
"user",
|
||||
"--url",
|
||||
"https://example.com",
|
||||
"--no-special",
|
||||
"--allowed-special-chars",
|
||||
"!@",
|
||||
"--special-mode",
|
||||
"safe",
|
||||
"--exclude-ambiguous",
|
||||
"--min-uppercase",
|
||||
"1",
|
||||
"--min-lowercase",
|
||||
"2",
|
||||
"--min-digits",
|
||||
"3",
|
||||
"--min-special",
|
||||
"4",
|
||||
],
|
||||
("Label", 16, "user", "https://example.com"),
|
||||
{},
|
||||
{
|
||||
"include_special_chars": False,
|
||||
"allowed_special_chars": "!@",
|
||||
"special_mode": "safe",
|
||||
"exclude_ambiguous": True,
|
||||
"min_uppercase": 1,
|
||||
"min_lowercase": 2,
|
||||
"min_digits": 3,
|
||||
"min_special": 4,
|
||||
},
|
||||
"1",
|
||||
),
|
||||
(
|
||||
|
Reference in New Issue
Block a user