mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-07-02 11:43:40 +02:00
Adding docs/eosio-keygen.1.in
This commit is contained in:
parent
890e9841e8
commit
637ccd529f
2 changed files with 123 additions and 0 deletions
|
|
@ -100,6 +100,9 @@ endif (WIN32)
|
||||||
install(FILES README.md LICENSE LICENSE.bitcoin
|
install(FILES README.md LICENSE LICENSE.bitcoin
|
||||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/${CMAKE_PROJECT_NAME})
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/${CMAKE_PROJECT_NAME})
|
||||||
|
|
||||||
|
configure_file( docs/eosio-keygen.1.in
|
||||||
|
${PROJECT_BINARY_DIR}/man1/eosio-keygen.1 )
|
||||||
|
|
||||||
# --------------------------------
|
# --------------------------------
|
||||||
# Debian package script
|
# Debian package script
|
||||||
# --------------------------------
|
# --------------------------------
|
||||||
|
|
|
||||||
120
docs/eosio-keygen.1.in
Normal file
120
docs/eosio-keygen.1.in
Normal file
|
|
@ -0,0 +1,120 @@
|
||||||
|
.TH @PROJECT_NAME@ 1 "January, 2020" "@PROJECT_NAME@ @PROJECT_VERSION@"
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
@PROJECT_NAME@ - Generate public and private keypair for
|
||||||
|
.UR https://eos.io/
|
||||||
|
EOS
|
||||||
|
.UE .
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
|
||||||
|
.SY @PROJECT_NAME@
|
||||||
|
.OP \-h|--help
|
||||||
|
.YS
|
||||||
|
|
||||||
|
.SY @PROJECT_NAME@
|
||||||
|
search
|
||||||
|
.OP \--l33t
|
||||||
|
.OP \--threads=<num>
|
||||||
|
.B word_list
|
||||||
|
.OP count
|
||||||
|
.YS
|
||||||
|
|
||||||
|
.SY @PROJECT_NAME@
|
||||||
|
benchmark
|
||||||
|
.OP num_keys
|
||||||
|
.YS
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.P
|
||||||
|
Output one EOSIO key pair if no arguments are given
|
||||||
|
.P
|
||||||
|
Options and subcommands are as follows:
|
||||||
|
|
||||||
|
.TP 15
|
||||||
|
.B -h, --help
|
||||||
|
Shows this help text.
|
||||||
|
.TP 15
|
||||||
|
.B search
|
||||||
|
performs a search, finding
|
||||||
|
.I <count>
|
||||||
|
public keys containing one or more words from
|
||||||
|
.I <word_list>
|
||||||
|
(separated with ',').
|
||||||
|
.PP
|
||||||
|
.RS 16
|
||||||
|
Search specific options:
|
||||||
|
.RS 2
|
||||||
|
.TP 20
|
||||||
|
.B --l33t
|
||||||
|
Takes each word in
|
||||||
|
.I <word_list>
|
||||||
|
and find all l33tspeak combinations of that word and uses the new list for the search.
|
||||||
|
.TP 20
|
||||||
|
.B --threads=<num>
|
||||||
|
Use
|
||||||
|
.I <num>
|
||||||
|
of parallel threads for searching. Default is what the operating system recomends.
|
||||||
|
.TP 20
|
||||||
|
.B count
|
||||||
|
Number of keys to search for (default is 10)
|
||||||
|
.RE 1
|
||||||
|
.TP 15
|
||||||
|
.B benchmark
|
||||||
|
performs a benchmark test, generating
|
||||||
|
.I <num_keys>
|
||||||
|
keys and measuring the time.
|
||||||
|
.PP
|
||||||
|
.RS 16
|
||||||
|
Benchmark specific options:
|
||||||
|
.RS 2
|
||||||
|
.TP 15
|
||||||
|
.B num_keys
|
||||||
|
Number of keys to search for (default is 10)
|
||||||
|
.RE 1
|
||||||
|
|
||||||
|
|
||||||
|
.SH SECURITY NOTICE
|
||||||
|
|
||||||
|
Keys are generated by OpenSSL\'s
|
||||||
|
.B EC_KEY_generate_key
|
||||||
|
function. The program will
|
||||||
|
never expose your keys to anything but the computers memory and output of the\
|
||||||
|
program. You are free to inspect the source code and compile yourself to verify.
|
||||||
|
.P
|
||||||
|
However, use this at your own risk. we cannot guarantee that the keys are\
|
||||||
|
cryptographically secure as this depends on OpenSSL's implementation (alto it is\
|
||||||
|
widely used and should be safe)
|
||||||
|
.P
|
||||||
|
Please read the
|
||||||
|
.I LICENSE
|
||||||
|
file.
|
||||||
|
.P
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||||
|
.br
|
||||||
|
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
||||||
|
.br
|
||||||
|
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
.br
|
||||||
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
||||||
|
.br
|
||||||
|
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
||||||
|
.br
|
||||||
|
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
.SH BUGS
|
||||||
|
|
||||||
|
Report bugs to
|
||||||
|
.UR https://github.com/eosswedenorg/eosio-keygen/issues
|
||||||
|
Github
|
||||||
|
.UE . Thank you.
|
||||||
|
|
||||||
|
.SH AUTHOR
|
||||||
|
|
||||||
|
.MT henrik@eossweden.org
|
||||||
|
Henrik Hautakoski
|
||||||
|
.ME
|
||||||
|
|
||||||
|
.UR https://eossweden.org
|
||||||
|
EOS Sw/eden
|
||||||
|
.UE
|
||||||
Loading…
Add table
Add a link
Reference in a new issue