add .gitignore, further improve vec
[mkp224o.git] / README.txt
blob2516f66c7d8b90d51d4237161fe4ca513c3c1a3c
1 mkp224o - vanity address generator for ed25519 onion services
3 This tool generates vanity ed25519 (hidden service version 3) onion addresses.
4 For context, see <https://gitweb.torproject.org/torspec.git/plain/rend-spec-v3.txt>.
6 REQUIREMENTS:
7 libsodium, GNU autoconf, GNU make, UNIX-like platform (currently tested in Linux and OpenBSD).
9 BUILDING:
10 `./autogen.sh` to generate configure script, if it's not there already.
11 `./configure` to generate makefile; in *BSD platforms you probably want to use
12 `./configure CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib"`.
13 You probably also want to pass something like "--enable-amd64-51-30k"
14 or "--enable-donna" to configure script for faster key generation;
15 run `./configure --help` to see all avaiable options.
16 Finally, `make` to start building (`gmake` in *BSD platforms).
18 USAGE:
19 Generator needs one of more filters to work.
20 It makes directory with secret/public keys and hostname
21 for each discovered service. By default root is current
22 directory, but that can be overridden with -d switch.
23 Use -s switch to enable printing of statistics, which may be useful
24 when benchmarking different ed25519 implementations on your machine.
25 Use -h switch to obtain all avaiable options.
27 CONTACT:
28 For bug reports/questions/whatever else, email cathugger at cock dot li.
30 ACKNOWLEDGEMENTS & LEGAL:
31 To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
32 You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
34 keccak.c is based on <https://github.com/gvanas/KeccakCodePackage/blob/master/Standalone/CompactFIPS202/Keccak-more-compact.c>.
35 ed25519/{ref10,amd64-51-30k,amd64-64-24k} are adopted from SUPERCOP <https://bench.cr.yp.to/supercop.html>.
36 ed25519/ed25519-donna adopted from <https://github.com/floodyberry/ed25519-donna>.
37 idea used in main.c' dofastwork() is stolen from <https://github.com/Yawning/horse25519>.