https://github.com/emersion/node-passwordmaker
A Node.js library for Password Maker
https://github.com/emersion/node-passwordmaker
Last synced: 5 months ago
JSON representation
A Node.js library for Password Maker
- Host: GitHub
- URL: https://github.com/emersion/node-passwordmaker
- Owner: emersion
- License: mit
- Created: 2015-11-11T07:48:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-13T15:12:26.000Z (over 10 years ago)
- Last Synced: 2025-01-03T07:14:06.826Z (over 1 year ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-passwordmaker
[](https://travis-ci.org/emersion/node-passwordmaker)
A Node.js library for [Password Maker](http://passwordmaker.org/).
## Usage
```js
var makepwd = require('passwordmaker');
console.log(makepwd({
hashAlgorithm: 'sha256',
masterPassword: 'test',
data: 'example.org',
length: 8,
charset: ''
}));
```