├── .github └── workflows │ └── ci.yaml ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── aclocal.m4 ├── config.h.in ├── config ├── compile ├── config.guess ├── config.sub ├── install-sh ├── ltmain.sh └── missing ├── configure ├── configure.ac ├── contrib ├── Fedora │ ├── 90-haveged.rules │ ├── haveged-dracut.module │ ├── haveged-once.service │ ├── haveged-switch-root.service │ ├── haveged.conf │ ├── haveged.service │ └── haveged.spec ├── SUSE │ ├── 90-haveged.rules │ ├── haveged-dracut.module │ └── haveged-switch-root.service ├── build │ ├── build.sh │ ├── havege_sample.c │ ├── lib.spec │ └── nolib.spec └── diags │ ├── bins.p │ ├── data_prep.c │ ├── inc.p │ ├── lognorm.r │ └── lognorm.sh ├── ent ├── Makefile.am ├── Makefile.in ├── chisq.c ├── entest.c ├── entitle.gif ├── examine_chi_square.R ├── examine_chi_square.sh ├── iso8859.c ├── iso8859.h ├── randtest.c ├── randtest.h └── test.sh ├── man ├── Makefile.am ├── Makefile.in ├── haveged.8 └── libhavege.3 ├── nist ├── Makefile.am ├── Makefile.in ├── cephes-protos.h ├── cephes.c ├── dfft.c ├── matrix.c ├── matrix.h ├── mconf.h ├── nist.c ├── nist.h ├── packtest.c ├── special-functions.c ├── special-functions.h └── template9 └── src ├── Makefile.am ├── Makefile.in ├── cpuid-43.h ├── havege.c ├── havege.h ├── havegecmd.c ├── havegecmd.h ├── havegecollect.c ├── havegecollect.h ├── haveged.c ├── haveged.h ├── havegetest.c ├── havegetest.h ├── havegetune.c ├── havegetune.h └── oneiteration.h /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/README.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config.h.in -------------------------------------------------------------------------------- /config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/compile -------------------------------------------------------------------------------- /config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/config.guess -------------------------------------------------------------------------------- /config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/config.sub -------------------------------------------------------------------------------- /config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/install-sh -------------------------------------------------------------------------------- /config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/ltmain.sh -------------------------------------------------------------------------------- /config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/config/missing -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/Fedora/90-haveged.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/90-haveged.rules -------------------------------------------------------------------------------- /contrib/Fedora/haveged-dracut.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/haveged-dracut.module -------------------------------------------------------------------------------- /contrib/Fedora/haveged-once.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/haveged-once.service -------------------------------------------------------------------------------- /contrib/Fedora/haveged-switch-root.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/haveged-switch-root.service -------------------------------------------------------------------------------- /contrib/Fedora/haveged.conf: -------------------------------------------------------------------------------- 1 | add_dracutmodules+=" haveged " 2 | -------------------------------------------------------------------------------- /contrib/Fedora/haveged.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/haveged.service -------------------------------------------------------------------------------- /contrib/Fedora/haveged.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/Fedora/haveged.spec -------------------------------------------------------------------------------- /contrib/SUSE/90-haveged.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/SUSE/90-haveged.rules -------------------------------------------------------------------------------- /contrib/SUSE/haveged-dracut.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/SUSE/haveged-dracut.module -------------------------------------------------------------------------------- /contrib/SUSE/haveged-switch-root.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/SUSE/haveged-switch-root.service -------------------------------------------------------------------------------- /contrib/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/build/build.sh -------------------------------------------------------------------------------- /contrib/build/havege_sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/build/havege_sample.c -------------------------------------------------------------------------------- /contrib/build/lib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/build/lib.spec -------------------------------------------------------------------------------- /contrib/build/nolib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/build/nolib.spec -------------------------------------------------------------------------------- /contrib/diags/bins.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/diags/bins.p -------------------------------------------------------------------------------- /contrib/diags/data_prep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/diags/data_prep.c -------------------------------------------------------------------------------- /contrib/diags/inc.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/diags/inc.p -------------------------------------------------------------------------------- /contrib/diags/lognorm.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/diags/lognorm.r -------------------------------------------------------------------------------- /contrib/diags/lognorm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/contrib/diags/lognorm.sh -------------------------------------------------------------------------------- /ent/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/Makefile.am -------------------------------------------------------------------------------- /ent/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/Makefile.in -------------------------------------------------------------------------------- /ent/chisq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/chisq.c -------------------------------------------------------------------------------- /ent/entest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/entest.c -------------------------------------------------------------------------------- /ent/entitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/entitle.gif -------------------------------------------------------------------------------- /ent/examine_chi_square.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/examine_chi_square.R -------------------------------------------------------------------------------- /ent/examine_chi_square.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/examine_chi_square.sh -------------------------------------------------------------------------------- /ent/iso8859.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/iso8859.c -------------------------------------------------------------------------------- /ent/iso8859.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/iso8859.h -------------------------------------------------------------------------------- /ent/randtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/randtest.c -------------------------------------------------------------------------------- /ent/randtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/randtest.h -------------------------------------------------------------------------------- /ent/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/ent/test.sh -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/haveged.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/man/haveged.8 -------------------------------------------------------------------------------- /man/libhavege.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/man/libhavege.3 -------------------------------------------------------------------------------- /nist/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/Makefile.am -------------------------------------------------------------------------------- /nist/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/Makefile.in -------------------------------------------------------------------------------- /nist/cephes-protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/cephes-protos.h -------------------------------------------------------------------------------- /nist/cephes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/cephes.c -------------------------------------------------------------------------------- /nist/dfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/dfft.c -------------------------------------------------------------------------------- /nist/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/matrix.c -------------------------------------------------------------------------------- /nist/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/matrix.h -------------------------------------------------------------------------------- /nist/mconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/mconf.h -------------------------------------------------------------------------------- /nist/nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/nist.c -------------------------------------------------------------------------------- /nist/nist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/nist.h -------------------------------------------------------------------------------- /nist/packtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/packtest.c -------------------------------------------------------------------------------- /nist/special-functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/special-functions.c -------------------------------------------------------------------------------- /nist/special-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/special-functions.h -------------------------------------------------------------------------------- /nist/template9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/nist/template9 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/cpuid-43.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/cpuid-43.h -------------------------------------------------------------------------------- /src/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havege.c -------------------------------------------------------------------------------- /src/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havege.h -------------------------------------------------------------------------------- /src/havegecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegecmd.c -------------------------------------------------------------------------------- /src/havegecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegecmd.h -------------------------------------------------------------------------------- /src/havegecollect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegecollect.c -------------------------------------------------------------------------------- /src/havegecollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegecollect.h -------------------------------------------------------------------------------- /src/haveged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/haveged.c -------------------------------------------------------------------------------- /src/haveged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/haveged.h -------------------------------------------------------------------------------- /src/havegetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegetest.c -------------------------------------------------------------------------------- /src/havegetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegetest.h -------------------------------------------------------------------------------- /src/havegetune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegetune.c -------------------------------------------------------------------------------- /src/havegetune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/havegetune.h -------------------------------------------------------------------------------- /src/oneiteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirka-h/haveged/HEAD/src/oneiteration.h --------------------------------------------------------------------------------