├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Makefile ├── example.sh ├── original.txt └── unrandom.py ├── fops ├── Makefile └── randkit_fops.c ├── tests ├── Makefile ├── fdrandom.c ├── getrandom.c ├── writefdrandom.c └── xor128.c ├── xor128 ├── Makefile └── randkit_xor128.c └── zero ├── Makefile └── randkit_zero.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/README.md -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | ./example.sh 3 | -------------------------------------------------------------------------------- /examples/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/examples/example.sh -------------------------------------------------------------------------------- /examples/original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/examples/original.txt -------------------------------------------------------------------------------- /examples/unrandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/examples/unrandom.py -------------------------------------------------------------------------------- /fops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/fops/Makefile -------------------------------------------------------------------------------- /fops/randkit_fops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/fops/randkit_fops.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/fdrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/tests/fdrandom.c -------------------------------------------------------------------------------- /tests/getrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/tests/getrandom.c -------------------------------------------------------------------------------- /tests/writefdrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/tests/writefdrandom.c -------------------------------------------------------------------------------- /tests/xor128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/tests/xor128.c -------------------------------------------------------------------------------- /xor128/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/xor128/Makefile -------------------------------------------------------------------------------- /xor128/randkit_xor128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/xor128/randkit_xor128.c -------------------------------------------------------------------------------- /zero/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/zero/Makefile -------------------------------------------------------------------------------- /zero/randkit_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vrasneur/randkit/HEAD/zero/randkit_zero.c --------------------------------------------------------------------------------