add "a-z a-Z 0-9" to pwgen
This commit is contained in:
parent
32c60a0d75
commit
3898265348
|
@ -31,6 +31,7 @@ const special = "!#$%&()*+,-./:;<=>?@[]^_{|}~";
|
|||
const alphabets = {
|
||||
SECURE: lowerCase + upperCase + numbers + special,
|
||||
SMOL: lowerCase + numbers,
|
||||
SECURE_ISH: lowerCase + upperCase + numbers,
|
||||
HEX: "123456789ABCDEF",
|
||||
};
|
||||
|
||||
|
@ -120,6 +121,7 @@ export class PasswordGenerator extends Component<DefaultPageProps, PasswordGener
|
|||
}}
|
||||
>
|
||||
<SelectOption name="a-z a-Z 0-9 specials" value={alphabets.SECURE} />
|
||||
<SelectOption name="a-z a-Z 0-9" value={alphabets.SECURE_ISH} />
|
||||
<SelectOption name="a-z 0-9" value={alphabets.SMOL} />
|
||||
<SelectOption name="A-F 1-9" value={alphabets.HEX} />
|
||||
</Select>
|
||||
|
|
Loading…
Reference in a new issue