https://github.com/errornointernet/passgen
A program that generates passwords (combinations) using a given set of keywords
https://github.com/errornointernet/passgen
combinations generator passwords permutations
Last synced: 7 months ago
JSON representation
A program that generates passwords (combinations) using a given set of keywords
- Host: GitHub
- URL: https://github.com/errornointernet/passgen
- Owner: ErrorNoInternet
- License: lgpl-3.0
- Created: 2023-09-02T06:01:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T09:56:04.000Z (over 1 year ago)
- Last Synced: 2024-12-29T17:57:30.311Z (about 1 year ago)
- Topics: combinations, generator, passwords, permutations
- Language: Zig
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# passgen
A program that generates passwords (combinations) using a given set of keywords. Currently the Zig version is the fastest on my machine, but optimization PRs are welcome!
For example, giving "a", "b", and "c" would generate 40 outcomes (142 bytes), including the empty new line at the start:
```
a
b
c
aa
ab
ac
[...]
cba
cbb
cbc
cca
ccb
ccc
```