-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
30 lines (21 loc) · 792 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Generator a password
version=1.0.0
Type of password:
1) Standard password:
size_password = 8
libraries = low_latin + dec_numbers
2) Password for phone:
size_password = 6
libraries = dec_numbers
3) Difficult password:
size_password = 12
libraries = low_latin + special_symbols + dec_numbers
Must contain at least one special character and a number.
4) Unreal password:
size_password = 16
libraries = low_latin + upper_latin + special_symbols + dec_number
5) Own type
size_password = 1-50
libraries = All available
Conditions for generating a password. You can choose the password size and libraries(select libraries or enter your character set).
Thanks for attention!