├── .cvsignore ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── configure.ac ├── contrib ├── .cvsignore ├── Makefile.am └── randstat.c ├── darn_impl.c ├── exits.h ├── fips.c ├── fips.h ├── m4 └── ax_pthread.m4 ├── ossl_helpers.c ├── ossl_helpers.h ├── rdrand_asm.S ├── rngd.8.in ├── rngd.c ├── rngd.h ├── rngd.service.in ├── rngd_darn.c ├── rngd_entsource.c ├── rngd_entsource.h ├── rngd_jitter.c ├── rngd_linux.c ├── rngd_linux.h ├── rngd_namedpipe.c ├── rngd_nistbeacon.c ├── rngd_pkcs11.c ├── rngd_qrypt.c ├── rngd_rdrand.c ├── rngd_rndr.c ├── rngd_rtlsdr.c ├── rngtest.1.in ├── rngtest.c ├── stats.c ├── stats.h ├── tests ├── Makefile.am ├── rngtestjitter.sh ├── rngtesturandom.sh └── rngtestzero.sh └── util.c /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/.cvsignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/contrib/.cvsignore -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/randstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/contrib/randstat.c -------------------------------------------------------------------------------- /darn_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/darn_impl.c -------------------------------------------------------------------------------- /exits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/exits.h -------------------------------------------------------------------------------- /fips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/fips.c -------------------------------------------------------------------------------- /fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/fips.h -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /ossl_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/ossl_helpers.c -------------------------------------------------------------------------------- /ossl_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/ossl_helpers.h -------------------------------------------------------------------------------- /rdrand_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rdrand_asm.S -------------------------------------------------------------------------------- /rngd.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd.8.in -------------------------------------------------------------------------------- /rngd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd.c -------------------------------------------------------------------------------- /rngd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd.h -------------------------------------------------------------------------------- /rngd.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd.service.in -------------------------------------------------------------------------------- /rngd_darn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_darn.c -------------------------------------------------------------------------------- /rngd_entsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_entsource.c -------------------------------------------------------------------------------- /rngd_entsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_entsource.h -------------------------------------------------------------------------------- /rngd_jitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_jitter.c -------------------------------------------------------------------------------- /rngd_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_linux.c -------------------------------------------------------------------------------- /rngd_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_linux.h -------------------------------------------------------------------------------- /rngd_namedpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_namedpipe.c -------------------------------------------------------------------------------- /rngd_nistbeacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_nistbeacon.c -------------------------------------------------------------------------------- /rngd_pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_pkcs11.c -------------------------------------------------------------------------------- /rngd_qrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_qrypt.c -------------------------------------------------------------------------------- /rngd_rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_rdrand.c -------------------------------------------------------------------------------- /rngd_rndr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_rndr.c -------------------------------------------------------------------------------- /rngd_rtlsdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngd_rtlsdr.c -------------------------------------------------------------------------------- /rngtest.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngtest.1.in -------------------------------------------------------------------------------- /rngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/rngtest.c -------------------------------------------------------------------------------- /stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/stats.c -------------------------------------------------------------------------------- /stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/stats.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/rngtestjitter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/tests/rngtestjitter.sh -------------------------------------------------------------------------------- /tests/rngtesturandom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/tests/rngtesturandom.sh -------------------------------------------------------------------------------- /tests/rngtestzero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/tests/rngtestzero.sh -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhorman/rng-tools/HEAD/util.c --------------------------------------------------------------------------------