Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Feb 2017 20:12:49 +0000 (UTC)
From:      Bernard Spil <brnrd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433449 - in head/security: . bdes
Message-ID:  <201702052012.v15KCnIN055347@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brnrd
Date: Sun Feb  5 20:12:49 2017
New Revision: 433449
URL: https://svnweb.freebsd.org/changeset/ports/433449

Log:
  security/bdes: New port
  
   - Add port so we can remove bdes from base
  
  Reviewed by:	allanjude, rene
  Approved by:	allanjude
  Differential Revision:	D9435

Added:
  head/security/bdes/
  head/security/bdes/Makefile   (contents, props changed)
  head/security/bdes/distinfo   (contents, props changed)
  head/security/bdes/pkg-descr   (contents, props changed)
  head/security/bdes/pkg-message   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Feb  5 18:58:34 2017	(r433448)
+++ head/security/Makefile	Sun Feb  5 20:12:49 2017	(r433449)
@@ -36,6 +36,7 @@
     SUBDIR += bcrypt
     SUBDIR += bcwipe
     SUBDIR += bdc
+    SUBDIR += bdes
     SUBDIR += bearssl
     SUBDIR += beecrypt
     SUBDIR += belier

Added: head/security/bdes/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/bdes/Makefile	Sun Feb  5 20:12:49 2017	(r433449)
@@ -0,0 +1,29 @@
+# Created by: Bernard Spil <brnrd@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	bdes
+PORTVERSION=	1993
+CATEGORIES=	security
+MASTER_SITES=	http://phobos69.inf.uni-konstanz.de/download/tools/ \
+		LOCAL/brnrd
+DISTNAME=	${PORTNAME}
+
+MAINTAINER=	brnrd@FreeBSD.org
+COMMENT=	Encrypt/decrypt using the Data Encryption Standard (DES)
+
+LICENSE=	BSD2CLAUSE
+
+USES=		ssl tar
+WRKSRC=		${WRKDIR}/bdes.src
+
+PLIST_FILES=	bin/bdes man/man1/bdes.1.gz
+
+do-build:
+	cd ${WRKSRC} && ${CC} ${CFLAGS} -I${OPENSSLINC} -c bdes.c
+	cd ${WRKSRC} && ${CC} -o bdes bdes.o ${OPENSSLLIB}/libcrypto.so
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/bdes ${STAGEDIR}${PREFIX}/bin/bdes
+	${INSTALL_MAN} ${WRKSRC}/bdes.1 ${STAGEDIR}${MANPREFIX}/man/man1/bdes.1
+
+.include <bsd.port.mk>

Added: head/security/bdes/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/bdes/distinfo	Sun Feb  5 20:12:49 2017	(r433449)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1486209042
+SHA256 (bdes.tar) = 1556f91258d8997f3b066a2c7c054e98f7b61807215816ebcd846edf8ee25ec3
+SIZE (bdes.tar) = 1167360

Added: head/security/bdes/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/bdes/pkg-descr	Sun Feb  5 20:12:49 2017	(r433449)
@@ -0,0 +1,9 @@
+The DES cipher should no longer be considered secure. Please consider
+using a more modern alternative.
+
+The bdes utility implements all DES modes of operation described in FIPS
+PUB 81, including alternative cipher feedback mode and both authentica-
+tion modes. The bdes utility reads from the standard input and writes to
+the standard output. By default, the input is encrypted using cipher
+block chaining (CBC) mode. Using the same key for encryption and decryp-
+tion preserves plain text.

Added: head/security/bdes/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/bdes/pkg-message	Sun Feb  5 20:12:49 2017	(r433449)
@@ -0,0 +1,4 @@
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!! The DES cipher should no longer be considered secure.     !!
+!! Please consider using a more modern alternative.          !!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702052012.v15KCnIN055347>