summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto
diff options
context:
space:
mode:
authortedu <>2014-04-15 20:50:02 +0000
committertedu <>2014-04-15 20:50:02 +0000
commit09552bf1fbf0338e2b2126fc1eb47159f02fd9f1 (patch)
tree980d9017a4c62e4e407ee48e40646163a9799c98 /src/lib/libcrypto/crypto
parent7c7e8a2dd9afdce78dc10a2b9a974c981d52e9b0 (diff)
downloadopenbsd-09552bf1fbf0338e2b2126fc1eb47159f02fd9f1.tar.gz
openbsd-09552bf1fbf0338e2b2126fc1eb47159f02fd9f1.tar.bz2
openbsd-09552bf1fbf0338e2b2126fc1eb47159f02fd9f1.zip
12 years ago, old_des.h was used to provide compatibility with libdes.
The man page says "Compatibility des_ functions are provided for a short while" and indeed even the original commit message says "The compatibility functions will be removed in some future release, at the latest in version 1.0." So here we are, a short while later. Now I've only been an OpenBSD developer for 11 years, one year less than this header has existed, but in that brief time, I've learned a thing or two about deleting obsolete code. It doesn't delete itself. And worse, people will continue using it until you force them onto a better path.
Diffstat (limited to 'src/lib/libcrypto/crypto')
-rw-r--r--src/lib/libcrypto/crypto/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile
index 8139cade49..97bb90b96d 100644
--- a/src/lib/libcrypto/crypto/Makefile
+++ b/src/lib/libcrypto/crypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.11 2014/04/15 20:19:55 miod Exp $ 1# $OpenBSD: Makefile,v 1.12 2014/04/15 20:49:00 tedu Exp $
2 2
3LIB= crypto 3LIB= crypto
4 4
@@ -111,7 +111,7 @@ SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c
111SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c 111SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c
112SRCS+= fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c 112SRCS+= fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c
113SRCS+= qud_cksm.c rand_key.c rpc_enc.c set_key.c xcbc_enc.c 113SRCS+= qud_cksm.c rand_key.c rpc_enc.c set_key.c xcbc_enc.c
114SRCS+= str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c 114SRCS+= str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c
115SRCS+= read2pwd.c 115SRCS+= read2pwd.c
116 116
117# dh/ 117# dh/
@@ -365,7 +365,6 @@ HDRS=\
365 crypto/conf/conf_api.h \ 365 crypto/conf/conf_api.h \
366 crypto/crypto.h \ 366 crypto/crypto.h \
367 crypto/des/des.h \ 367 crypto/des/des.h \
368 crypto/des/des_old.h \
369 crypto/dh/dh.h \ 368 crypto/dh/dh.h \
370 crypto/dsa/dsa.h \ 369 crypto/dsa/dsa.h \
371 crypto/dso/dso.h \ 370 crypto/dso/dso.h \