Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 415 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 415 Bytes

node-passwordmaker

Build Status

A Node.js library for Password Maker.

Usage

var makepwd = require('passwordmaker');

console.log(makepwd({
	hashAlgorithm: 'sha256',
	masterPassword: 'test',
	data: 'example.org',
	length: 8,
	charset: ''
}));