secure-password-utilities
Version:
Secure, zero-dependency utilities for generating passwords, passphrases, pins, and more
9 lines • 454 B
JavaScript
export const DIGIT_CHARSET = '0123456789';
export const LOWERCASE_CHARSET = 'abcdefghijklmnopqrstuvwxyz';
export const UPPERCASE_CHARSET = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
// OWASP password special characters except space and backslash. Has the benefit of evenly dividing 256.
//
// See https://owasp.org/www-community/password-special-characters
//
export const SYMBOL_CHARSET = '!"#$%&\'()*+,-./:;<=>?@[]{}^_`|~';
//# sourceMappingURL=constants.js.map