├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── addr2rmd.c ├── base58 ├── base58.c └── libbase58.h ├── bloom ├── LICENSE ├── bloom.c └── bloom.h ├── calculatefromkey.c ├── calculatefrompublickey.c ├── examples └── unsolvedpuzzles.txt ├── gmpecc.c ├── gmpecc.h ├── input.txt.enc ├── keydivision.c ├── keygen.c ├── keymath.c ├── modmath.c ├── rehashaddress.c ├── rmd160 ├── rmd160.c └── rmd160.h ├── sha256 ├── sha256.c └── sha256.h ├── sharedsecret.c ├── test_functions.c ├── util.c ├── util.h ├── verifymsg.c └── xxhash ├── LICENSE ├── xxhash.c └── xxhash.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/README.md -------------------------------------------------------------------------------- /addr2rmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/addr2rmd.c -------------------------------------------------------------------------------- /base58/base58.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/base58/base58.c -------------------------------------------------------------------------------- /base58/libbase58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/base58/libbase58.h -------------------------------------------------------------------------------- /bloom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/bloom/LICENSE -------------------------------------------------------------------------------- /bloom/bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/bloom/bloom.c -------------------------------------------------------------------------------- /bloom/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/bloom/bloom.h -------------------------------------------------------------------------------- /calculatefromkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/calculatefromkey.c -------------------------------------------------------------------------------- /calculatefrompublickey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/calculatefrompublickey.c -------------------------------------------------------------------------------- /examples/unsolvedpuzzles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/examples/unsolvedpuzzles.txt -------------------------------------------------------------------------------- /gmpecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/gmpecc.c -------------------------------------------------------------------------------- /gmpecc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/gmpecc.h -------------------------------------------------------------------------------- /input.txt.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/input.txt.enc -------------------------------------------------------------------------------- /keydivision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/keydivision.c -------------------------------------------------------------------------------- /keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/keygen.c -------------------------------------------------------------------------------- /keymath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/keymath.c -------------------------------------------------------------------------------- /modmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/modmath.c -------------------------------------------------------------------------------- /rehashaddress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/rehashaddress.c -------------------------------------------------------------------------------- /rmd160/rmd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/rmd160/rmd160.c -------------------------------------------------------------------------------- /rmd160/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/rmd160/rmd160.h -------------------------------------------------------------------------------- /sha256/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/sha256/sha256.c -------------------------------------------------------------------------------- /sha256/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/sha256/sha256.h -------------------------------------------------------------------------------- /sharedsecret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/sharedsecret.c -------------------------------------------------------------------------------- /test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/test_functions.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/util.h -------------------------------------------------------------------------------- /verifymsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/verifymsg.c -------------------------------------------------------------------------------- /xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/xxhash/LICENSE -------------------------------------------------------------------------------- /xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/xxhash/xxhash.c -------------------------------------------------------------------------------- /xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertobsd/ecctools/HEAD/xxhash/xxhash.h --------------------------------------------------------------------------------