-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to parallel calculations across different machines using checkpoints? #62
Comments
That's not what the checkpoints are designed for and they shouldn't be used for this. The checkpoints are solely for stopping and resuming the program when using a passphrase. Technically you craft custom checkpoint files for each computer and they could compute the same passphrase at different offsets, but at some point you're going to be calculating hashes that have already been tried on your other machines. In theory it would not be that hard to extend the code to accept an instance number and the total number of instances as input and properly perform parallel computations for a passphrase, you should really just consider not using a passphrase. If you do not use a passphrase, all your machines will try different random seeds and there will be no redundant calculations. It does not get simpler than that. Another simple solution would be to use different passphrases for each machine (ex. passphrase1, passphrase2, etc.). |
So as far as I understand, does it mean that technically there's no difference between calculating the same seed with predefined checkpoints and random seeds on multiple machines? |
There are many differences, including but not limited to:
|
possible - yes. |
Greetings!
I've seen #61 which added checkpoints to the project but as someone who not really into cryptography I can't understand how they're implemented. Is it even possible to make 4 differrent checkpoints for 1 seed and throw them to differrent machines to calculate values in parallel or it's actually necessarry to perform every step of computing keys to get certain checkpoint?
The text was updated successfully, but these errors were encountered: