├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── pow.c ├── sha3.c └── sha3.h /.gitignore: -------------------------------------------------------------------------------- 1 | pow 2 | *.o 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/README.md -------------------------------------------------------------------------------- /pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/pow.c -------------------------------------------------------------------------------- /sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/sha3.c -------------------------------------------------------------------------------- /sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/br0ns/pow/HEAD/sha3.h --------------------------------------------------------------------------------