crypto-pwd-generator
v1.3.1
Published
A strong password generator
Downloads
8
Maintainers
Readme
crypto-pwd-generator
A simple, configurable library for generating rock-solid passwords.
Overview
crypto-pwd-generator allows you to generate password lists or single passwords of any length and composed of any group of characters. The mechanism is as simple as calling a single function even without any parameters. It can be used in Node.js CLI applications, WEB applications or VSCode extensions.
The randomization engine is based on the Crypto library, which is considered cryptographically secure and ensures a level of security suitable for industrial or military applications.
Thanks to the use of the crypto
library and an effective shuffling algorithm, the passwords
produced are aesthetically beautiful and expressive of a high level of entropy.
Features
The generator, by default, produces a password or a list of 10 passwords, each of them 12 characters long and containing at least one uppercase character, at least one lowercase character, at least one number and at least one special character. It is possible to pass to the generator a list of parameters with which every aspect of the password list structure can be configured.
Requirements
Node
version 8 or later.
Installation
npm install crypto-pwd-generator
How to use
const pwds = require('crypto-pwd-generator');
//////
// Generate a list of passwords with default parameters
const pwdsList = pwds.generate();
pwdsList.forEach(pw => console.log('default', pw));
// ... or just a single password
const pw = pwds.password();
console.log('one default', pw);
//////
// Generate 20 passwords 32 characters long in the
// format of hexadecimal numbers
const params = {
quantity: 20,
pwLength: 32,
uppercases: 'abcdef0123456789',
lowercases: 'abcdef0123456789',
symbols: 'abcdef0123456789',
digits: 'abcdef0123456789',
};
const hexPwList = pwds.generate(params);
hexPwList.forEach(pw => console.log('hexadecimal', pw));
// one password with the same requirements
const custPw = pwds.password(params);
console.log('one hexadecimal', custPw);
//////
// Generate 10 passwords 8 characters long without
// uppercase characters or symbols; only numbers
// and lowercase characters.
params = {
pwLength: 8,
uppercases: 'abcdefghijklmnopqrstuvwxyz',
symbols: '1234567890',
};
const noUpCasePwList = pwds.generate(params);
noUpCasePwList.forEach(pw => console.log('no uppercases', pw));
// one password with the same requirements
const noUpCasePw = pwds.password(params);
console.log('one no uppercases', noUpCasePw);
Managing settings
The generators can be invoked without any parameters (in this case the default parameters are used) or with a parameter consisting of an object containing one or more of the following values:
const pwds = require('crypto-pwd-generator');
const pwdsList = pwds.generate({
//////
// the length of every generated password;
// type: number; min: 8 chars; max: 128 chars; default: 12 chars;
pwLength: 12,
//////
// the length of the generated list;
// type: number; min: 1; max: 100; default: 10;
quantity: 10,
//////
// A string containing the uppercase characters used to construct the passwords;
// type: string; minLength: 4; maxLength: 128; default: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
uppercases: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
//////
// Minimum amount of uppercase characters contained in each password;
// type: number; min: 1; max: 2; default: 1;
uppercasesQty: 1,
//////
// A string containing the lowercase characters used to construct the passwords;
// type: string; minLength: 4; maxLength: 128; default: 'abcdefghijklmnopqrstuvwxyz';
lowercases: 'abcdefghijklmnopqrstuvwxyz',
//////
// Minimum amount of lowercase characters contained in each password;
// type: number; min: 1; max: 2; default: 1;
lowercasesQty: 1,
//////
// A string containing the numbers used to construct the passwords;
// type: string; minLength: 4; maxLength: 128; default: '0123456789';
digits: '0123456789',
//////
// Minimum amount of digits contained in each password;
// type: number; min: 1; max: 2; default: 1;
digitsQty: 1,
//////
// A string containing the symbols used to construct the passwords;
// type: string; minLength: 4; maxLength: 128; default: '£$%&+*/-@#';
symbols: '£$%&+*/-@#',
//////
// Minimum amount of special characters contained in each password;
// type: number; min: 1; max: 2; default: 1;
symbolsQty: 1,
});
Contributing
Contributions to this project are welcomed!
Whether you have
- questions, concerns, or suggestions for improving this library
- want to report a bug
- submit a fix
- propose new features
please don't hesitate to reach out to me on GitHub and open an issue.
Disclaimer
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.