A PGP key with fingerprint FFFF FFFF
is much better than one with 86C6 F0AE
(at least looks like
Use this tool to find an awesome PGP key, whose fingerprint matches a specific pattern.
It supports only ECC key and suffix matching currently.
$ ./apgpk-cli.exe --help
Find an awesome PGP key
Usage: apgpk-cli.exe [OPTIONS] --pattern <PATH>
Options:
-p, --pattern <PATH>
Path of the pattern file, one pattern per line
-o, --output <PATH>
Directory to save the key [default: ./key_output]
-t, --threads <THREADS>
Numbers of threads to calculate, default value is the cores of cpu [default: 8]
--max-backshift-days <MAX_BACKSHIFT_DAYS>
The max backshift days when calculating keys [default: 30]
--uid <UID>
Default uid [default: apgpk]
-h, --help
Print help (see more with '--help')
-V, --version
Print version
Generally the only option should be given is -p
(--pattern
). for example:
./apgpk-cli -p /path/to/pattern_file
The pattern file can contain multiple patterns, one pattern per line. For example:
AAAAAAAA
ABCDEF0
EE2EE2EE
0123456789ABCDEF
FFFFFF
Warning: The patterns with length less than 4 are not recommended, which may result in too many keys being generated.
$ ./apgpk-cli -p pattern
2022-10-11T22:55:08.712217Z INFO apgpk: Runing with 8 threads
2022-10-11T22:55:08.712235Z INFO apgpk: Find key by pattern ["AAAAAAAA", "ABCDEF0", "EE2EE2EE", "0123456789ABCDEF", "FFFFFF"]
2022-10-11T22:55:38.751304Z INFO apgpk: Current speed (8 threads) 186166.36 key/s
...
2022-10-11T22:57:09.989945Z INFO apgpk: Current speed (8 threads) 187553.42 key/s
2022-10-11T22:57:18.375451Z INFO apgpk: Find key: 65611DC454F49F3851422E3B97694D5749FFFFFF
...
2022-10-11T22:58:40.756333Z INFO apgpk: Current speed (8 threads) 186955.45 key/s
...
# Press Ctrl+C or Send SIGNINT to kill
2022-10-11T22:58:42.915362Z WARN apgpk: SIGNINT received, waiting all threads to exit...
2022-10-11T22:58:44.870096Z INFO apgpk: Shutdown
You can find the keys in output directory, which match the pattern. Choose an awesome one and use gpg --import {FINGERPRINT}.asc
to import it. Then you can edit the key, change the default uid or set passphrase for it.
git clone https://github.com/Koro33/apgpk.git
cd apgpk
cargo build --release
This project is licensed under the AGPL-3.0 License