From owner-svn-src-head@freebsd.org Mon Feb 6 08:27:21 2017 Return-Path: Delivered-To: svn-src-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 52EB3CD1C26; Mon, 6 Feb 2017 08:27:21 +0000 (UTC) (envelope-from allanjude@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 152271960; Mon, 6 Feb 2017 08:27:21 +0000 (UTC) (envelope-from allanjude@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v168RK45056088; Mon, 6 Feb 2017 08:27:20 GMT (envelope-from allanjude@FreeBSD.org) Received: (from allanjude@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v168RJQY056084; Mon, 6 Feb 2017 08:27:19 GMT (envelope-from allanjude@FreeBSD.org) Message-Id: <201702060827.v168RJQY056084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: allanjude set sender to allanjude@FreeBSD.org using -f From: Allan Jude Date: Mon, 6 Feb 2017 08:27:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313329 - in head: bin/ed secure/usr.bin secure/usr.bin/bdes usr.bin usr.bin/enigma X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Feb 2017 08:27:21 -0000 Author: allanjude Date: Mon Feb 6 08:27:19 2017 New Revision: 313329 URL: https://svnweb.freebsd.org/changeset/base/313329 Log: Remove bdes(1) The use of DES for anything is discouraged, especially with a static IV of 0 If you still need bdes(1) to decrypt Kirk's video lectures, see security/bdes in ports. This commit brought to you by the FOSDEM DevSummit and the "remove unneeded dependancies on openssl in base" working group Reviewed by: bapt, brnrd Relnotes: yes Sponsored by: FOSDEM DevSummit Differential Revision: https://reviews.freebsd.org/D9424 Deleted: head/secure/usr.bin/bdes/ Modified: head/bin/ed/ed.1 head/secure/usr.bin/Makefile head/usr.bin/Makefile head/usr.bin/enigma/enigma.1 Modified: head/bin/ed/ed.1 ============================================================================== --- head/bin/ed/ed.1 Mon Feb 6 08:26:45 2017 (r313328) +++ head/bin/ed/ed.1 Mon Feb 6 08:27:19 2017 (r313329) @@ -1,5 +1,5 @@ .\" $FreeBSD$ -.Dd October 2, 2016 +.Dd February 5, 2017 .Dt ED 1 .Os .Sh NAME @@ -871,9 +871,6 @@ writes. If a newline alone is entered as the key, then encryption is turned off. Otherwise, echoing is disabled while a key is read. -Encryption/decryption is done using the -.Xr bdes 1 -algorithm. .It Pf (.+1)z n Scroll .Ar n @@ -962,7 +959,6 @@ results in an error. If the command is entered a second time, it succeeds, but any changes to the buffer are lost. .Sh SEE ALSO -.Xr bdes 1 , .Xr sed 1 , .Xr sh 1 , .Xr vi 1 , Modified: head/secure/usr.bin/Makefile ============================================================================== --- head/secure/usr.bin/Makefile Mon Feb 6 08:26:45 2017 (r313328) +++ head/secure/usr.bin/Makefile Mon Feb 6 08:27:19 2017 (r313329) @@ -4,7 +4,7 @@ SUBDIR= .if ${MK_OPENSSL} != "no" -SUBDIR+=bdes openssl +SUBDIR+=openssl .if ${MK_OPENSSH} != "no" SUBDIR+=scp sftp ssh ssh-add ssh-agent ssh-keygen ssh-keyscan .endif Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Mon Feb 6 08:26:45 2017 (r313328) +++ head/usr.bin/Makefile Mon Feb 6 08:27:19 2017 (r313329) @@ -6,7 +6,6 @@ # XXX MISSING: deroff diction graph learn plot # spell spline struct xsend # XXX Use GNU versions: diff ld patch -# Moved to secure: bdes # SUBDIR= alias \ Modified: head/usr.bin/enigma/enigma.1 ============================================================================== --- head/usr.bin/enigma/enigma.1 Mon Feb 6 08:26:45 2017 (r313328) +++ head/usr.bin/enigma/enigma.1 Mon Feb 6 08:27:19 2017 (r313329) @@ -6,7 +6,7 @@ .\" .\" $FreeBSD$ .\" " -.Dd May 14, 2004 +.Dd February 5, 2017 .Dt ENIGMA 1 .Os .Sh NAME @@ -84,7 +84,6 @@ with other operating systems that also p .Xr crypt 1 there). For real encryption, refer to -.Xr bdes 1 , .Xr openssl 1 , .Xr pgp 1 Pq Pa ports/security/pgp , or @@ -115,7 +114,6 @@ enigma XXX < encrypted .Pp This displays the previously created file on the terminal. .Sh SEE ALSO -.Xr bdes 1 , .Xr gpg 1 , .Xr openssl 1 , .Xr pgp 1 ,