From owner-svn-ports-head@freebsd.org Sun Feb 5 20:12:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C5B6CD2DF8; Sun, 5 Feb 2017 20:12:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3EAF71952; Sun, 5 Feb 2017 20:12:51 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v15KCoLf055352; Sun, 5 Feb 2017 20:12:50 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15KCnIN055347; Sun, 5 Feb 2017 20:12:49 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201702052012.v15KCnIN055347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 5 Feb 2017 20:12:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433449 - in head/security: . bdes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Feb 2017 20:12:51 -0000 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 +# $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 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. !! +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!