svn commit: r313329 - in head: bin/ed secure/usr.bin secure/usr.bin/bdes usr.bin usr.bin/enigma

Allan Jude allanjude at FreeBSD.org
Mon Feb 6 08:27:21 UTC 2017


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 ,


More information about the svn-src-head mailing list