https://github.com/doncato/passphrase-generator
A simple script to generate Passphrases that are Human readable while being moderately safe & unique
https://github.com/doncato/passphrase-generator
passphrase-generator python-script python3
Last synced: 8 months ago
JSON representation
A simple script to generate Passphrases that are Human readable while being moderately safe & unique
- Host: GitHub
- URL: https://github.com/doncato/passphrase-generator
- Owner: doncato
- Created: 2021-06-05T13:04:14.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-05-04T17:52:45.000Z (about 4 years ago)
- Last Synced: 2025-08-25T14:51:28.681Z (10 months ago)
- Topics: passphrase-generator, python-script, python3
- Language: Python
- Homepage:
- Size: 1.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Passphrase-Generator
A simple script to generate Passphrases that are Human readable while being moderately safe & unique
This code has a function called `generate_passphrase` which returns a tuple of 3 strings
+ A random set of 5 chars where each one has 86 possibilities (e.g. `B>gh[`)
+ A number with 8 digits, or 2 blocks of 4 digits seperated by a '-' (each from 0-9) (e.g. `5260-7903`)
+ A random (newly) generated word from 3-14 characters that should be human-readable (more or less) (e.g. `Stuneiqui`)
## Installation & Execution
+ Download and install Python 3.5.x or higher on https://www.python.org/
+ Download the Script
+ Run the script using `python3 ` on UNIX Platforms or `py `/`py3 ` on Windows
## Notes
+ You could theoratically use this as a library in other projects (`from passgen import generate_passphrase` and later use `generate_passphrase`)