S1W
S1W
Attached a bit of code I used before, maybe this is usable to integrate in BTCrecover? [decrypt_bip38.txt](https://github.com/gurnec/btcrecover/files/1158302/decrypt_bip38.txt)
Great! Thanks for your response. In the meanwhile I will use the `--listpass` work around. Could you explain a little bit more about what exactly casuses problems with EC math...
You could use the --listpass option to generate your password list and feed that to the script I uploaded before. Edit the scrip and fill the bip = '' variable...
Sure ;) You need to put the BIP38 string you want to crack where it says bip = ''. So put a key like this there bip='6PYWndUBwfPBfbijjXZNVrkubTniN6CsViNHpKP6xn2uKBnqZBsT68nezG'. Leave the inputfile...
Thanks for replying! I'd like to try something like this to read my strings from file: ``` var lines = require('fs').readFileSync(filename, 'utf-8') .split('\n') .filter(Boolean); ``` But since my list is...