Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/espadrine/passphrase
Generate cryptographically secure passphrases at a set entropy.
https://github.com/espadrine/passphrase
cryptography passphrase-generator password-generator
Last synced: 10 days ago
JSON representation
Generate cryptographically secure passphrases at a set entropy.
- Host: GitHub
- URL: https://github.com/espadrine/passphrase
- Owner: espadrine
- License: mit
- Created: 2015-01-12T19:55:38.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-06-24T19:58:06.000Z (over 4 years ago)
- Last Synced: 2024-10-31T19:49:13.558Z (16 days ago)
- Topics: cryptography, passphrase-generator, password-generator
- Language: JavaScript
- Homepage: https://espadrine.github.io/passphrase/
- Size: 341 KB
- Stars: 6
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
*Generate cryptographically secure passphrases at a set entropy.*
## Node.js
```js
var passphrase = require('passphrase');
var entropy = 90;
passphrase(entropy, function(_, phrase, actualEntropy) {
console.log('My passphrase is:', phrase);
});
```## Browser
Link to the browser.js file, and the passphrase function is in global scope.
## Details
[Blog article][].
[Blog article]: https://espadrine.github.io/blog/posts/memorable-passwords.html