https://github.com/nkcmr/mempwgen
a memorable password generator
https://github.com/nkcmr/mempwgen
password-generator
Last synced: 2 months ago
JSON representation
a memorable password generator
- Host: GitHub
- URL: https://github.com/nkcmr/mempwgen
- Owner: nkcmr
- License: mit
- Created: 2020-05-11T16:05:10.000Z (almost 5 years ago)
- Default Branch: trunk
- Last Pushed: 2022-07-03T22:13:09.000Z (almost 3 years ago)
- Last Synced: 2025-02-14T21:37:38.589Z (3 months ago)
- Topics: password-generator
- Language: Go
- Size: 151 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# mempwgen
a password generator that makes secure but memorable passwords.
- 20-27 characters
- 1 symbol (`#`, `@`, `-`, `_`)
- 3 numbers
- 2 words## install
```
$ go get -u -v github.com/nkcmr/mempwgen
```## sample
```
$ mempwgen
inundated686-inclined
overactive681@scotch
corporal565#interpret
repetition175#lapdog
circuits688_warriors
masculine913@equation
breathable975-factory
cheeseburger323_dandruff
neediness260-victoria
coroner119_drugstore
deputized627#restful
disruptions591-forbade
becoming12-anesthetic
fatso664@spontaneity
subjugation1-upholstery
...
```the dictionary used contained some offensive words when i first found it. i did the best i could to scrub of everything that wouldn't be appropriate in a work context. if you find something offensive, please make an edit and open a PR, i'll be sure to take it out. 🙂
## license
```
Copyright (c) 2020 Nicholas ComerPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```