Skip to content

Tags: bitcoin20230/BitCrack

Tags

0.21

Toggle 0.21's commit message
Error checking fix

-Some CUDA runtime errors would not be caught
-Was not checking cudaGetLastError() after launching kernel
-CudaException was defined in two different places, and the exception being thrown was a different type from the one being caught

0.20

Toggle 0.20's commit message
Fix build break

-Build was breaking on Linux due to conflict between uint64_t and unsigned long long. Removed
use of unsigned long long and use uint64_t from now on for 64-bit values.

0.19

Toggle 0.19's commit message
Bloom filter fix

-Fixed bug where bloom filter was not working correctly

0.18

Toggle 0.18's commit message
Merge branch 'master' of https://github.com/brichard19/BitCrack

0.17

Toggle 0.17's commit message
Merge branch 'master' of https://github.com/brichard19/BitCrack

0.16

Toggle 0.16's commit message
CPU Usage

-CPU usage was 100% while running kernel. This is due to the default behavior of CUDA. Enabling the cudaDeviceScheduleBlockingSync flag allows CUDA to yield it's CPU time while waiting for the kernel, bringing the CPU usage to near 0%.

0.15

Toggle 0.15's commit message
Initialize on GPU

-Initialize the points on the GPU instead of CPU for faster startup
-Fixed bug where device detection could fail

v0.14

Toggle v0.14's commit message
Bigger bloom filters, logging

-Handle arbitrarily large bloom filters up to 2^64 bits.. Previously was limited to bloom filters of size 2^32 bits.
-Added Logger class which can log info/errors/debug messages. Currently only writes to stdout
-Added class for managing bloom filter
-Added class for managing results list, whcih works as a single global list which any GPU thread can add to and can be read by the host

v0.13

Toggle v0.13's commit message
Dynamic bloom filter

-Dynamically resize the bloom filter to accomodate arbitrarily large address lists
-Read the target file directly into KeyFinder so it does not need to be kept in memory in the caller
-Display GPU memory usage in status
-Display GPU name in status
-Display number of targets in status

v0.12

Toggle v0.12's commit message
Bug fix

-When searching a large number of addresses, the bloom filter could have too many false positives, which makes the results buffer overflow. Increasing the bloom filter size to 2^24 bits until a dynamic solution is in place.