summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto
diff options
context:
space:
mode:
authormiod <>2014-07-09 08:44:53 +0000
committermiod <>2014-07-09 08:44:53 +0000
commit80c7e473818aaeb7fb9171f571861d3445db5452 (patch)
tree0fe0376de6cf7b6cdc5dc2a821cc8ee3e7945605 /src/lib/libcrypto/crypto
parent8cbe58f0d357b14b0ce292d336469d0554a567bc (diff)
downloadopenbsd-80c7e473818aaeb7fb9171f571861d3445db5452.tar.gz
openbsd-80c7e473818aaeb7fb9171f571861d3445db5452.tar.bz2
openbsd-80c7e473818aaeb7fb9171f571861d3445db5452.zip
RSA_NULL used to be a compile option allowing the RSA interfaces to be
compiled-in, with nonfunctional code, to be able to cope with the RSA patent. However, we don't use this option, and the RSA patent has expired more than 10 years ago, so just drop this piece.
Diffstat (limited to 'src/lib/libcrypto/crypto')
-rw-r--r--src/lib/libcrypto/crypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto/Makefile b/src/lib/libcrypto/crypto/Makefile
index a39cb36fb4..43d6366651 100644
--- a/src/lib/libcrypto/crypto/Makefile
+++ b/src/lib/libcrypto/crypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.42 2014/07/08 16:07:37 miod Exp $ 1# $OpenBSD: Makefile,v 1.43 2014/07/09 08:44:53 miod Exp $
2 2
3LIB= crypto 3LIB= crypto
4 4
@@ -219,7 +219,7 @@ SRCS+= rmd_dgst.c rmd_one.c
219 219
220# rsa/ 220# rsa/
221SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c 221SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c
222SRCS+= rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c 222SRCS+= rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c
223SRCS+= rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c 223SRCS+= rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c
224SRCS+= rsa_pmeth.c rsa_crpt.c 224SRCS+= rsa_pmeth.c rsa_crpt.c
225 225