import scrypt;

A simple password-based encryption utility as a demonstration of
the scrypt key derivation function, greatly increasing the cost of
a brute force attack compared to openssl enc.

feedback and liaison with author from Predrag Punosevac, thanks!
This commit is contained in:
sthen 2009-05-25 22:48:48 +00:00
parent 856e7aaf08
commit e9b59d293f
4 changed files with 38 additions and 0 deletions

27
security/scrypt/Makefile Normal file
View File

@ -0,0 +1,27 @@
# $OpenBSD: Makefile,v 1.1.1.1 2009/05/25 22:48:48 sthen Exp $
COMMENT = command-line encryption using scrypt key derivation function
DISTNAME = scrypt-1.1.3
CATEGORIES = security
HOMEPAGE = http://www.tarsnap.com/scrypt/
# BSD
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB = c crypto
MASTER_SITES = ${HOMEPAGE}
EXTRACT_SUFX = .tgz
SEPARATE_BUILD = concurrent
CONFIGURE_STYLE = gnu
NO_REGRESS = Yes
.include <bsd.port.mk>

5
security/scrypt/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (scrypt-1.1.3.tgz) = NthVRXTOvkVhMnPem+0xCg==
RMD160 (scrypt-1.1.3.tgz) = w0plHk1hK1wvnYaKrU1kbK5z4hU=
SHA1 (scrypt-1.1.3.tgz) = 99RA+WnM/+t2rrKTv+kA339/U1k=
SHA256 (scrypt-1.1.3.tgz) = Q3AJtKxw5MJHfR6jGuCtghjhTrnUEHP/UdjwdPEaN08=
SIZE (scrypt-1.1.3.tgz) = 79571

View File

@ -0,0 +1,3 @@
A simple password-based encryption utility as a demonstration of
the scrypt key derivation function, greatly increasing the cost of
a brute force attack compared to openssl enc.

View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2009/05/25 22:48:48 sthen Exp $
@bin bin/scrypt
@man man/man1/scrypt.1