├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── algo ├── brainv2.c ├── brainv2.h ├── brainwalletio.c ├── brainwalletio.h ├── keccak.c ├── keccak.h ├── sha3.c ├── sha3.h ├── warpwallet.c └── warpwallet.h ├── blfchk.c ├── bloom.c ├── bloom.h ├── brainflayer.c ├── crack.h ├── defcoin_stealme.hex ├── dldummy.c ├── ec_pubkey_fast.c ├── ec_pubkey_fast.h ├── ecmtabgen.c ├── example.hex ├── filehex.c ├── hash160.h ├── hex.c ├── hex.h ├── hex2blf.c ├── hexln.c ├── hsearchf.c ├── hsearchf.h ├── mmapf.c ├── mmapf.h ├── ripemd160_256.c └── ripemd160_256.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/README.md -------------------------------------------------------------------------------- /algo/brainv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/brainv2.c -------------------------------------------------------------------------------- /algo/brainv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/brainv2.h -------------------------------------------------------------------------------- /algo/brainwalletio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/brainwalletio.c -------------------------------------------------------------------------------- /algo/brainwalletio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/brainwalletio.h -------------------------------------------------------------------------------- /algo/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/keccak.c -------------------------------------------------------------------------------- /algo/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/keccak.h -------------------------------------------------------------------------------- /algo/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/sha3.c -------------------------------------------------------------------------------- /algo/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/sha3.h -------------------------------------------------------------------------------- /algo/warpwallet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/warpwallet.c -------------------------------------------------------------------------------- /algo/warpwallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/algo/warpwallet.h -------------------------------------------------------------------------------- /blfchk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/blfchk.c -------------------------------------------------------------------------------- /bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/bloom.c -------------------------------------------------------------------------------- /bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/bloom.h -------------------------------------------------------------------------------- /brainflayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/brainflayer.c -------------------------------------------------------------------------------- /crack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/crack.h -------------------------------------------------------------------------------- /defcoin_stealme.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/defcoin_stealme.hex -------------------------------------------------------------------------------- /dldummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/dldummy.c -------------------------------------------------------------------------------- /ec_pubkey_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/ec_pubkey_fast.c -------------------------------------------------------------------------------- /ec_pubkey_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/ec_pubkey_fast.h -------------------------------------------------------------------------------- /ecmtabgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/ecmtabgen.c -------------------------------------------------------------------------------- /example.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/example.hex -------------------------------------------------------------------------------- /filehex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/filehex.c -------------------------------------------------------------------------------- /hash160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hash160.h -------------------------------------------------------------------------------- /hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hex.c -------------------------------------------------------------------------------- /hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hex.h -------------------------------------------------------------------------------- /hex2blf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hex2blf.c -------------------------------------------------------------------------------- /hexln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hexln.c -------------------------------------------------------------------------------- /hsearchf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hsearchf.c -------------------------------------------------------------------------------- /hsearchf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/hsearchf.h -------------------------------------------------------------------------------- /mmapf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/mmapf.c -------------------------------------------------------------------------------- /mmapf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/mmapf.h -------------------------------------------------------------------------------- /ripemd160_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/ripemd160_256.c -------------------------------------------------------------------------------- /ripemd160_256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XopMC/brainflayer-MultiBlooms/HEAD/ripemd160_256.h --------------------------------------------------------------------------------