Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tory1103/passmx
Password generator. Generates passwords by mixing a secret and a passphrase.
https://github.com/tory1103/passmx
cplusplus cpp generator mixer password-generator password-mixer
Last synced: 26 days ago
JSON representation
Password generator. Generates passwords by mixing a secret and a passphrase.
- Host: GitHub
- URL: https://github.com/tory1103/passmx
- Owner: tory1103
- License: gpl-3.0
- Created: 2023-09-16T09:07:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-17T10:12:44.000Z (over 1 year ago)
- Last Synced: 2023-09-17T13:37:06.883Z (over 1 year ago)
- Topics: cplusplus, cpp, generator, mixer, password-generator, password-mixer
- Language: C++
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PASSMX - Password mixer
Passmx is a password generator that mixes a secret and a passphrase to generate it. It's NOT a password manager or password store, it's just a password generator.## Features
- Password generation
- Custom password length
- Verbose output## Documentation
- [Installation](./docs/install.md)
- [Usage](#usage)# Usage
```bash
# Show usage menu
./passmx -h# Generate a password of 25 character length
# The passphrase can be any string,
# but its highly recommended to use some easy to remember phrase like shown below
./passmx -s "mysecretkey" \
-p "i registered in google.com with [email protected]" \
-l 25 -v# This example shows that you can use any string to generate passwords
./passmx -s "mysecretkey" \
-p "__01234//5\\6789__" \
-l 8 -v
```