forked from albertobsd/keyhunt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change murmurhash2 to xxhash. Added a second bloomfilter for bsgs, le…
…ss RAM more speed
- Loading branch information
1 parent
519cbfd
commit b8f6434
Showing
13 changed files
with
5,861 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ heapsort.c | |
insertionsorttest.c | ||
introsort.c | ||
|
||
*.txt | ||
# Prerequisites | ||
*.d | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,54 @@ | ||
#Version 0.1.20210320 K*BSGS | ||
# Version 0.1.20210322 | ||
- Added xxhash for bloomfilter it hash better performance than murmurhash2. And it is 64 bits hash :) | ||
- We reduce the number of items of the bPtable in ram using a second bloom filter, thanks @iceland2k14 | ||
- The ram saved space is around 80%, so we can use a bigger K value, around 4 or 5 times bigger than previous version | ||
|
||
# Version 0.1.20210320 K*BSGS | ||
- Solved little error with compress and uncompress new param -l. See https://github.com/albertobsd/keyhunt/issues/17 | ||
- funtion bsgs optimized to use a little less RAM (not related with Pfile) | ||
- Again removed some compile warnings. See https://github.com/albertobsd/keyhunt/issues/16 | ||
|
||
#Version 0.1.20210311 K*BSGS | ||
# Version 0.1.20210311 K*BSGS | ||
- Added mode rmd160, this method works two times faster than Address method. This mode can search all the altcoins | ||
|
||
|
||
#Version 0.1.20210311 K*BSGS | ||
# Version 0.1.20210311 K*BSGS | ||
- Solved some bug when the publickeys in the input file was invalid but the program keeps running with 0 publickeys | ||
- Now publickeys can be compressed, not only uncompressed | ||
|
||
#Version 0.1.20210306 K*BSGS | ||
# Version 0.1.20210306 K*BSGS | ||
- Added K factor for BSGS | ||
- Added bPfile.c to generate a precalculated file | ||
- Remove unused files about keccak and sha3 | ||
- Change Bloom filter limits and % of error from 0.001 to 0.00001 in bloomfilter. | ||
|
||
#Version 0.1.20210112 BSGS | ||
# Version 0.1.20210112 BSGS | ||
- Added mode BSGS this work with a file with uncompressed keys | ||
- Updated bloom filter to allow More items | ||
|
||
|
||
#Version 0.1.20201228 | ||
# Version 0.1.20201228 | ||
- Change Quicksort to Introsort, this solve some edge cases of quicksort. | ||
- Introsort is avaible to keyhunt and hexcharstoraw. worst case. O(N log N). | ||
- Aling of some output text | ||
|
||
#Version 0.1.20201223 | ||
# Version 0.1.20201223 | ||
- Added new tool hexcharstoraw to create a raw binary file for xpoint from a text-hexadecimal file | ||
- Added option -w to work with raw binary file, this file contains xpoint in binary format fixed to 32 bytes | ||
|
||
#Version 0.1.20201222 | ||
# Version 0.1.20201222 | ||
- Fixed some ugly bug in the searchbinary function thanks to Ujang | ||
- Added to stdout the vanitykeys found with -v option | ||
|
||
#Version 0.1.20201221 | ||
# Version 0.1.20201221 | ||
- Fixed search by xpoint. | ||
- Added -e option to skip the sort process whe the file is already sorted. | ||
- Fixed debugcount when upto N is less than debugcount. | ||
- Changed "-R upto" to "-R" and added "-n upto" option. | ||
|
||
#Version 0.1.20201218 | ||
# Version 0.1.20201218 | ||
- Minor bugs fixed. | ||
|
||
#Version 0.1.20201217 | ||
# Version 0.1.20201217 | ||
- First Realease | ||
- Thanks to all CryptoHunters to make this code possible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.