BitCrack icon indicating copy to clipboard operation
BitCrack copied to clipboard

OpenCL bug still not fixed ...

Open RB61 opened this issue 4 years ago • 1 comments

https://github.com/brichard19/BitCrack/blob/6bf8059ef075eb1622298395866b0bd02375e1d9/CLKeySearchDevice/CLKeySearchDevice.cpp#L37

https://github.com/brichard19/BitCrack/blob/6bf8059ef075eb1622298395866b0bd02375e1d9/CLKeySearchDevice/CLKeySearchDevice.cpp#L578

These is a contradiction here:

_points = pointsPerThread * threads * blocks; // line 37

uint64_t totalPoints = (uint64_t)_points * _threads * _blocks; // line 578

At line 37 : _points seems to be the total points since multiplied by threads and blocks At line 587 _points is multiplied again by threads and blocks

I fixed it by naively changing line 578 to this: uint64_t totalPoints = (uint64_t)_points ;

RB61 avatar Jun 22 '20 17:06 RB61

Need Help with private key

crackprivatekeys avatar Aug 05 '20 22:08 crackprivatekeys