Ryan Castellucci

Results 88 comments of Ryan Castellucci

Please pre-process your list to remove the `\r` characters.

I'm leaving this open because I actually do plan to implement this as an option.

You can use the `-v` flag to get progress output on `stderr`, then redirect that to a file or read it in a wrapper script. I might implement something to...

the second number is how many keys have been tried (and should auto-scale reporting interval to update several time per minute), you can compute the last key tried by taking...

yes, so long as you haven't specified the -n option

I'm somewhat surprised that didn't throw a compiler error. C doesn't have a convenient way to handle numbers that large (you could use a bignum library or OpenSSL...). Python will...

Intended solution for this: add an option to stop after processing a given number of keys.

The scalar private keys are most significant bit first. For multiple cores/CPUs, you can use e.g. `-n 1/4` for the first, `-n 2/4` for the second, `-n 3/4` for the...

> ./brainflayer -v -I 0000000 ..... 0000001 -b addrs.blf This starts with private key 0x1 and increments from there. The word "scalar" is a technical term. More simply, private keys...

I'll write a patch to address this issue. Does someone want to assign it to me?