bitstir monitors rnd(4) for low entropy and uses find(1) to solicit more.
program and pkg from Peter Hendrickson <pdh@wiredyne.com>
This commit is contained in:
parent
b642ec70f9
commit
e6cb91e745
7 changed files with 63 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.139 2003/08/19 15:48:17 agc Exp $
|
||||
# $NetBSD: Makefile,v 1.140 2003/08/29 00:25:34 dan Exp $
|
||||
#
|
||||
|
||||
COMMENT= Security tools
|
||||
|
@ -15,6 +15,7 @@ SUBDIR+= arirang
|
|||
SUBDIR+= audit-packages
|
||||
SUBDIR+= avcheck
|
||||
SUBDIR+= beecrypt
|
||||
SUBDIR+= bitstir
|
||||
SUBDIR+= cfs
|
||||
SUBDIR+= crack
|
||||
SUBDIR+= cy-login
|
||||
|
|
7
security/bitstir/DESCR
Normal file
7
security/bitstir/DESCR
Normal file
|
@ -0,0 +1,7 @@
|
|||
Bitstir monitors the level of entropy available from /dev/random and
|
||||
generates disk activity to automatically restore this level when it
|
||||
gets low. Programs which block when entropy runs out are delayed only
|
||||
momentarily if at all.
|
||||
|
||||
Bitstir was written by Peter Hendrickson <pdh@wiredyne.com>. There
|
||||
is a page at http://www.wiredyne.com/software/bitstir.html.
|
16
security/bitstir/Makefile
Normal file
16
security/bitstir/Makefile
Normal file
|
@ -0,0 +1,16 @@
|
|||
# $NetBSD: Makefile,v 1.1 2003/08/29 00:25:35 dan Exp $
|
||||
#
|
||||
|
||||
DISTNAME= bitstir-0.2
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://www.wiredyne.com/software/downloads/
|
||||
|
||||
MAINTAINER= pdh@wiredyne.com
|
||||
HOMEPAGE= http://www.wiredyne.com/software/downloads/
|
||||
COMMENT= Entropy restoration daemon
|
||||
|
||||
USE_BUILDLINK2= yes
|
||||
|
||||
ONLY_FOR_PLATFORM= NetBSD-*-*
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
14
security/bitstir/Makefile~
Normal file
14
security/bitstir/Makefile~
Normal file
|
@ -0,0 +1,14 @@
|
|||
# $NetBSD: Makefile~,v 1.1 2003/08/29 00:25:36 dan Exp $
|
||||
#
|
||||
|
||||
DISTNAME= bitstir-0.2
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://www.wiredyne.com/software/downloads/
|
||||
|
||||
MAINTAINER= pdh@wiredyne.com
|
||||
HOMEPAGE= http://www.wiredyne.com/software/downloads/
|
||||
COMMENT= Entropy restoration daemon
|
||||
|
||||
USE_BUILDLINK2= yes
|
||||
|
||||
.include "../../mk/bsd.pkg.mk"
|
4
security/bitstir/PLIST
Normal file
4
security/bitstir/PLIST
Normal file
|
@ -0,0 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2003/08/29 00:25:36 dan Exp $
|
||||
bin/bits-avail
|
||||
bin/bitstir
|
||||
man/man8/bitstir.8
|
5
security/bitstir/distinfo
Normal file
5
security/bitstir/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2003/08/29 00:25:36 dan Exp $
|
||||
|
||||
SHA1 (bitstir-0.2.tar.gz) = 867fc2b28805a71ca2f1e3e3337b3c906951e121
|
||||
Size (bitstir-0.2.tar.gz) = 6423 bytes
|
||||
SHA1 (patch-aa) = 564b3895b84f07dc05553b3289165e1a2abbe747
|
15
security/bitstir/patches/patch-aa
Normal file
15
security/bitstir/patches/patch-aa
Normal file
|
@ -0,0 +1,15 @@
|
|||
$NetBSD: patch-aa,v 1.1 2003/08/29 00:25:37 dan Exp $
|
||||
|
||||
--- Makefile.orig Wed Aug 27 12:58:29 2003
|
||||
+++ Makefile
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
# Makefile for bitstir.
|
||||
|
||||
-INSTALLDIR= /usr/local/bin
|
||||
-MANDIR= /usr/local/man
|
||||
+INSTALLDIR= ${PREFIX}/bin
|
||||
+MANDIR= ${PREFIX}/man
|
||||
FIND?= /usr/bin/find
|
||||
|
||||
CC?= cc
|
Loading…
Reference in a new issue