├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── libwally-core │ └── CMakeLists.txt ├── config.txt ├── invalid_secrets.txt ├── scripts └── build.sh ├── secrets.txt ├── src ├── bip38.hpp ├── config.hpp ├── main.cpp └── progress.hpp └── valid_secret.txt /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/README.md -------------------------------------------------------------------------------- /cmake/libwally-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/cmake/libwally-core/CMakeLists.txt -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/config.txt -------------------------------------------------------------------------------- /invalid_secrets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /secrets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/secrets.txt -------------------------------------------------------------------------------- /src/bip38.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/src/bip38.hpp -------------------------------------------------------------------------------- /src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/src/config.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agurod42/brute_force_bip38/HEAD/src/progress.hpp -------------------------------------------------------------------------------- /valid_secret.txt: -------------------------------------------------------------------------------- 1 | TestingOneTwoThree --------------------------------------------------------------------------------