Skip to content

Commit 28ccd32

Browse files
committed
Version + docco bump
1 parent 30092c7 commit 28ccd32

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

btcrecover/addressset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with this program. If not, see http://www.gnu.org/licenses/
1919

2020

21-
__version__ = "1.2.0-CryptoGuide"
21+
__version__ = "1.3.0-CryptoGuide"
2222

2323
import struct, base64, io, mmap, ast, itertools, sys, gc, glob, math
2424
from os import path

btcrecover/btcrpass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# TODO: put everything in a class?
2222
# TODO: pythonize comments/documentation
2323

24-
__version__ = "1.2.0-Cryptoguide"
24+
__version__ = "1.3.0-Cryptoguide"
2525
__ordering_version__ = b"0.6.4" # must be updated whenever password ordering changes
2626
disable_security_warnings = True
2727

btcrecover/btcrseed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# TODO: finish pythonizing comments/documentation
2121

22-
__version__ = "1.2.0-CryptoGuide"
22+
__version__ = "1.3.0-CryptoGuide"
2323

2424
disable_security_warnings = True
2525

docs/GPU_Acceleration.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ The performance increase that this offers depends on the type of wallet you are
88

99
For the sake of comparison, the CPU vs GPU performance for an i7-8750 vs an NVidia 1660ti, for a variety of wallets is generally:
1010

11-
| Recovery Type | CPU Performance (kp/s) | GPU Performance (kp/s) |
12-
|---|---|---|
13-
| Bitcoin Core (JTR Kernel) | 0.07 | 6.75 |
14-
| Bitcoin Core (OpenCL_Brute) | 0.07 | 0.95 |
15-
| Blockchain.com Main Password | 1 | 10 |
16-
| Blockchain.com Second Password | 0.39 | 15.5 |
17-
| Electrum 2 Wallet Password | 4.5 | 21 |
18-
| BIP39 12 Word Seed | 33 | 134 |
19-
| BIP39 12 Word Seed (Tokenlist) | 33 | 130 |
20-
| BIP39 24 Word Seed | 160 | 180 |
21-
| BIP39 24 Word Seed (Tokenlist) | 140 | 160 |
22-
| Electrum Seed | 200 | 366 |
11+
| Recovery Type | CPU Performance (kp/s) | GPU Performance (kp/s) | GPU speed boost vs CPU |
12+
|---|---|---|---|
13+
| Bitcoin Core (JTR Kernel) | 0.07 | 6.75 | 96x |
14+
| Bitcoin Core (OpenCL_Brute) | 0.07 | 0.95 | 14x |
15+
| Blockchain.com Main Password | 1 | 10 | 10x |
16+
| Blockchain.com Second Password | 0.39 | 15.5 | 40x |
17+
| Electrum 2 Wallet Password | 4.5 | 21 | 4.5x |
18+
| BIP39 12 Word Seed | 33 | 134 | 4.3x |
19+
| BIP39 12 Word Seed (Tokenlist) | 33 | 130 | 4x |
20+
| BIP39 24 Word Seed | 160 | 180 | 1.15x |
21+
| BIP39 24 Word Seed (Tokenlist) | 140 | 160 | 1.15x |
22+
| Electrum Seed | 200 | 366 | 1.8x |
2323

2424
**Don't simply assume that enabling GPU/OpenCL will give a speed boost at this point, especially if you have a very high end CPU and low end GPU... Test your command both with and without OpenCL/GPU and use the --no-eta and --performance arguments to evaluate performance**
2525

0 commit comments

Comments
 (0)