Skip to content

Commit

Permalink
bsgs optimization, bug fixed and warning removed, check CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
albertobsd committed Mar 20, 2021
1 parent 8c455b5 commit 519cbfd
Show file tree
Hide file tree
Showing 3 changed files with 354 additions and 726 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#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
- Added mode rmd160, this method works two times faster than Address method. This mode can search all the altcoins

Expand Down
2 changes: 1 addition & 1 deletion bPfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ int main(int argc, char **argv) {
mpz_set(point_t.x,P.x);
mpz_set(point_t.y,P.y);
gmp_sprintf(temporal,"%0.64Zx",P.x);
hexs2bin(temporal,rawvalue);
hexs2bin(temporal,(unsigned char *)rawvalue);
fwrite(rawvalue,1,32,p_file);
Point_Addition(&G,&point_t,&P);
i++;
Expand Down

0 comments on commit 519cbfd

Please sign in to comment.