1
0
Fork 0

add "a-z a-Z 0-9" to pwgen

This commit is contained in:
ChaotiCryptidz 2022-08-28 16:16:14 +01:00
parent 32c60a0d75
commit 3898265348
No known key found for this signature in database

View file

@ -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>