├── .github └── workflows │ └── ci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── scrypt.c ├── scrypt.h ├── scryptmodule.c ├── setup.py └── test.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/README.md -------------------------------------------------------------------------------- /scrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/scrypt.c -------------------------------------------------------------------------------- /scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/scrypt.h -------------------------------------------------------------------------------- /scryptmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/scryptmodule.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogecoin/ltc-scrypt/HEAD/test.py --------------------------------------------------------------------------------