diff options
author | Arthur W. Green <awg@posteo.us> | 2016-11-02 22:51:11 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-11-02 22:53:15 +0700 |
commit | f362866181391ed9baa3846125841900c15aac2f (patch) | |
tree | 35c1141650a3e28cb505217605cf4e16a72971ce /system/bit-babbler/README | |
parent | bd115573f690340db79b91991f1b6bb8bfc34850 (diff) |
system/bit-babbler: Added (Hardware True Random Number generator).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/bit-babbler/README')
-rw-r--r-- | system/bit-babbler/README | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/system/bit-babbler/README b/system/bit-babbler/README new file mode 100644 index 0000000000000..81e5a69cbe30e --- /dev/null +++ b/system/bit-babbler/README @@ -0,0 +1,29 @@ +The BitBabbler is a hardware-based True Random Number generator +(TRNG). It is offered in both "White" and "Black" varieties that are +functionally almost identical apart from throughput and cost. This +package installs the software necessary to control and perform basic +health checks on connected BB devices. + +After installing the package, "groupadd bit-babbler", or adjust +/etc/udev/rules.d/90-bit-babbler.rules to use an existing group (e.g., +wheel or adm) that will have permissions for the BB devices in your +system. + +Typically, you'll probably want your BitBabbler device(s) to start +feeding entropy to the kernel at boot. Include these lines in +/etc/rc.d/rc.local: + +# Start BitBabbler TRNG. +if [ -x /etc/rc.d/rc.seedd ]; then + . /etc/rc.d/rc.seedd start +fi + +It is also a good idea to stop your BB device from feeding entropy to +the kernel before capturing the random number seed on shutdown/reboot. +Put these lines in /etc/rc.d/rc.local_shutdown, which you'll need to +create if it doesn't already exist: + +# Stop BitBabbler TRNG. +if [ -x /etc/rc.d/rc.seedd ]; then + . /etc/rc.d/rc.seedd stop +fi |