@webful/passwordmaker-lib
v0.1.7
Published
A client-side-friendly library for Password Maker
Downloads
51
Maintainers
Readme
passwordmaker-lib
A library for Password Maker.
Forked from emersion/node-passwordmarker, with tweaks to allow client-side use without Browserify.
Key changes:
- Switched from Node's
Crypto
module to crypto-js. - Dropped MD4 support, as it's not included in that library.
Usage
var makePassword = require('@webful/passwordmaker-lib');
console.log(makePassword({
hashAlgorithm: 'hmac-sha256',
masterPassword: 'MySuperStrongMasterPassword',
data: 'example.org',
length: 15,
charset: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789`~!@#$%^&*()_-+={}|[]\\:";\'<>?,./',
}));