├── .gitignore ├── README.md ├── core-decrypt.exe ├── sample_wallets ├── 1234.dat ├── football.dat ├── hunter2.dat ├── justiceleague.dat └── london2tokyo.dat ├── src ├── Makefile ├── PasswordDictionary.cpp ├── aes.cpp ├── cl_util.cpp ├── cl_util.h ├── core-decrypt.cl ├── core-decrypt.h ├── core-decrypt.sln ├── core-decrypt.vcxproj ├── core-decrypt_cl.cpp ├── embedcl │ └── embedcl.cpp ├── hash.cpp ├── hash_opencl.cpp ├── main.cpp ├── sha512.cpp ├── tools │ └── embedcl.exe ├── util.cpp └── util.h ├── walletinfo.py └── word_lists ├── 0000_to_9999.txt ├── 0_to_9.txt ├── 0_to_9999.txt ├── 10_letter_words.txt ├── 11_letter_words.txt ├── 12_letter_words.txt ├── 2_letter_words.txt ├── 3_letter_words.txt ├── 4_digit_numbers.txt ├── 4_digit_numbers_padded.txt ├── 4_letter_words.txt ├── 5_letter_words.txt ├── 6_letter_words.txt ├── 7_letter_words.txt ├── 8_letter_words.txt ├── 9_letter_words.txt ├── countries.txt └── words_alpha.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/README.md -------------------------------------------------------------------------------- /core-decrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/core-decrypt.exe -------------------------------------------------------------------------------- /sample_wallets/1234.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/sample_wallets/1234.dat -------------------------------------------------------------------------------- /sample_wallets/football.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/sample_wallets/football.dat -------------------------------------------------------------------------------- /sample_wallets/hunter2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/sample_wallets/hunter2.dat -------------------------------------------------------------------------------- /sample_wallets/justiceleague.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/sample_wallets/justiceleague.dat -------------------------------------------------------------------------------- /sample_wallets/london2tokyo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/sample_wallets/london2tokyo.dat -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/PasswordDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/PasswordDictionary.cpp -------------------------------------------------------------------------------- /src/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/aes.cpp -------------------------------------------------------------------------------- /src/cl_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/cl_util.cpp -------------------------------------------------------------------------------- /src/cl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/cl_util.h -------------------------------------------------------------------------------- /src/core-decrypt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/core-decrypt.cl -------------------------------------------------------------------------------- /src/core-decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/core-decrypt.h -------------------------------------------------------------------------------- /src/core-decrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/core-decrypt.sln -------------------------------------------------------------------------------- /src/core-decrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/core-decrypt.vcxproj -------------------------------------------------------------------------------- /src/core-decrypt_cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/core-decrypt_cl.cpp -------------------------------------------------------------------------------- /src/embedcl/embedcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/embedcl/embedcl.cpp -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/hash_opencl.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/sha512.cpp -------------------------------------------------------------------------------- /src/tools/embedcl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/tools/embedcl.exe -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/src/util.h -------------------------------------------------------------------------------- /walletinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/walletinfo.py -------------------------------------------------------------------------------- /word_lists/0000_to_9999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/0000_to_9999.txt -------------------------------------------------------------------------------- /word_lists/0_to_9.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 -------------------------------------------------------------------------------- /word_lists/0_to_9999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/0_to_9999.txt -------------------------------------------------------------------------------- /word_lists/10_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/10_letter_words.txt -------------------------------------------------------------------------------- /word_lists/11_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/11_letter_words.txt -------------------------------------------------------------------------------- /word_lists/12_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/12_letter_words.txt -------------------------------------------------------------------------------- /word_lists/2_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/2_letter_words.txt -------------------------------------------------------------------------------- /word_lists/3_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/3_letter_words.txt -------------------------------------------------------------------------------- /word_lists/4_digit_numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/4_digit_numbers.txt -------------------------------------------------------------------------------- /word_lists/4_digit_numbers_padded.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/4_digit_numbers_padded.txt -------------------------------------------------------------------------------- /word_lists/4_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/4_letter_words.txt -------------------------------------------------------------------------------- /word_lists/5_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/5_letter_words.txt -------------------------------------------------------------------------------- /word_lists/6_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/6_letter_words.txt -------------------------------------------------------------------------------- /word_lists/7_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/7_letter_words.txt -------------------------------------------------------------------------------- /word_lists/8_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/8_letter_words.txt -------------------------------------------------------------------------------- /word_lists/9_letter_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/9_letter_words.txt -------------------------------------------------------------------------------- /word_lists/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/countries.txt -------------------------------------------------------------------------------- /word_lists/words_alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brichard19/core-decrypt/HEAD/word_lists/words_alpha.txt --------------------------------------------------------------------------------