bsgs optimization, bug fixed and warning removed, check CHANGELOG

This commit is contained in:
AlbertoBSD
2021-03-20 11:44:07 +01:00
parent 8c455b543e
commit 519cbfd78e
3 changed files with 363 additions and 735 deletions

View File

@@ -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

View File

@@ -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++;

1091
keyhunt.c

File diff suppressed because it is too large Load Diff