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: over 1 year 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-18T19:44:11.000Z (almost 3 years ago)
- Last Synced: 2025-02-15T01:17:29.027Z (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 username@gmail.com" \
-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
```