1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00
Commit graph

75 commits

Author SHA1 Message Date
f3bf4bdab1 src/main.cpp: use std::cerr for error messages. 2020-01-16 16:48:50 +01:00
c416bbdad2 src/main.cpp: consume "--threads" flag even if not supported (so we dont break scripts) 2020-01-16 16:36:59 +01:00
368d2ad726 src/main.cpp: cleaning up command-line arguments. 2020-01-16 16:34:16 +01:00
297ae2b98f src/main.cpp: document -h,--help in usage() 2020-01-16 15:50:09 +01:00
161b7e80e1 src/WIF.cpp: in wif_print_key() print public before private. 2020-01-16 14:27:17 +01:00
f6ba8a73a2 src/key_search_helpers.cpp: in key_contains_word() skip first 3 chars of pubkey ("EOS") 2020-01-16 08:05:53 +01:00
2db52b9406 src/main.cpp: in cmd_search() n should default to 10 2020-01-15 19:39:36 +01:00
8c8e586b2c CI: combine mac,unix,win jobs into one and use matrix + control steps via "if" and $RUNNER_OS variable. 2020-01-15 19:21:55 +01:00
725ba47e34 CI: Build with and without thread support. 2020-01-15 17:33:20 +01:00
5b8d26a4e3 README.md: Adding github actions badge 2020-01-15 17:24:21 +01:00
5b4a45fa59 Removing unused includes. 2020-01-15 17:13:59 +01:00
35bb2302dd key_search: refactor into a KeySearch class. 2020-01-15 17:02:53 +01:00
418949f26f src/string.cpp: in l33twords() "l" is a bit special. so we set "l" to "1" 2020-01-15 16:55:11 +01:00
fd2b4a8368
Merge pull request #9 from eosswedenorg/l33t
l33tspeak support

Closes #7
2020-01-15 15:31:02 +01:00
e95470d57f Merge branch 'develop' into l33t
# Conflicts:
#	src/main.cpp
#	src/string.cpp
2020-01-15 15:28:57 +01:00
f6e4603cbe src/main.cpp: implement "--l33t" flag. 2020-01-15 13:02:10 +01:00
58406e0c24 src/main.cpp: must do base58_strip after we have split into list. otherwise we will strip the delimiter "," 2020-01-15 12:58:43 +01:00
baba04991f string: adding base58_strip() for strlist_t 2020-01-15 12:56:40 +01:00
237fc4e4af src/main.cpp: call strjoin(words) instead of printing "search" directly. 2020-01-15 12:32:35 +01:00
5bc3335d54 string: adding strjoin() function 2020-01-15 12:30:49 +01:00
4f4444a62a string: add l33twords() function. 2020-01-15 12:03:14 +01:00
e5c096c709 src/main.cpp: use base58_strip() when creating the word list. 2020-01-14 10:20:50 +01:00
87647ba1cd string: adding base58_strip() function 2020-01-14 10:20:22 +01:00
410c890275 src/main.cpp: remove unused variables. 2020-01-14 10:19:32 +01:00
6ab7a9affa src/main.cpp: minor bug-fix, should be or instead of and when checking "-h" or "--help" flags. 2020-01-14 10:19:32 +01:00
58c83b2795 scripts/generate_deb.sh.in: find distribution name/version from lsb-release to use in filename. 2020-01-12 12:57:51 +01:00
26ddf38ef7 src/main.cpp: for search, change default count from 100 to 10. 2020-01-12 12:57:02 +01:00
1546d3c81c Version 0.1.3 2020-01-12 08:44:35 +01:00
9139969cd6 Merge pull request #6 from eosswedenorg/thread-algorithm
Imporved threading algorithm, closes #5
2020-01-12 08:40:52 +01:00
6dcc897fcf key_search: refactor key_search_n() and key_search_nt() to proper names. 2020-01-10 10:56:32 +01:00
a4dec2e39b src/key_search.h: remove key_search() it does not make sense and key_contains_word() can be used instead. 2020-01-10 10:41:56 +01:00
bae3721211 src/key_search_helpers.cpp: add key_contains_word() 2020-01-10 10:41:56 +01:00
1c3d503369 src/main.cpp: remove thread code and use key_search_nt() 2020-01-10 10:30:42 +01:00
7e37f1ef8b key_search: refactor thread code into key_search_nt() function and key_search_nt.cpp file. 2020-01-10 10:30:16 +01:00
936378c69f Adding key_search_helpers module. 2020-01-10 10:28:55 +01:00
77d63a5c36 key_search: split key_search() function into key_search() and key_search_n() 2020-01-10 09:29:37 +01:00
f4e2b1e162 scripts/generate_deb.sh.in: fix PACKAGE_SHAREDIR and PACKAGE_BINDIR (updated cmake variables) 2020-01-10 08:25:25 +01:00
b9cb871a49 Version 1.1.2 2020-01-10 07:45:12 +01:00
f358118775 src/main.cpp: minor change to usage output. 2020-01-10 07:44:38 +01:00
46df157668 src/key_search.cpp: add mutex lock to result output. 2020-01-10 07:35:28 +01:00
56fd5eecbc src/main.cpp: in thread_search() handle edge case where number of search results is less than number of threads. 2020-01-10 07:31:45 +01:00
88638d0e94 WIF: Add const to wif_print_key() 2020-01-10 07:29:45 +01:00
a9181bab91 src/main.cpp: threads, use std:🧵:hardware_concurrency() as default value for n_threads. 2020-01-10 07:17:31 +01:00
70965b0a60 src/main.cpp: for search, clamp count variable. 2020-01-10 07:07:47 +01:00
b6ddf1ed24 CMakeLists.txt: Fix Windows build failure (the windows specific stuffs must come after PROGRAM_EXE target) 2020-01-09 12:22:04 +01:00
c8632c2806 Version 0.1.1 2020-01-09 12:12:21 +01:00
c3a0f20b1f scripts/generate_deb.sh.in: depend on libc6 for pthreads (should always be there but just in case). 2020-01-09 12:11:35 +01:00
09e2d3a769 src/main.cpp: adding usage text and better command line parsing. 2020-01-09 12:05:22 +01:00
9701580b6f CMakeLists.txt: Use correct install paths. 2020-01-09 11:29:40 +01:00
b1ccc7a36b CMakeLists.txt: Some cleanup and restructure. 2020-01-09 11:19:25 +01:00