summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authortb <>2024-03-02 11:17:27 +0000
committertb <>2024-03-02 11:17:27 +0000
commitd0dca40aabf970e230bf037138cf9765723fbeec (patch)
tree8c07af34e7527067f90550ed8765d719f02813b4 /src/lib/libcrypto/Makefile
parent3228d4664f5cbc8a4b11e8d1cf7aa6636946f529 (diff)
downloadopenbsd-d0dca40aabf970e230bf037138cf9765723fbeec.tar.gz
openbsd-d0dca40aabf970e230bf037138cf9765723fbeec.tar.bz2
openbsd-d0dca40aabf970e230bf037138cf9765723fbeec.zip
Unhook and remove GOST and STREEBOG
This stops compiling the GOST source. The current implementation is low quality and got in the way, especially in libssl. While we would be open for GOST support, it needs to be significantly better than what we have had and it also needs a maintainer. Add OPENSSL_NO_GOST to opensslfeatures and stop installing gost.h. Some code wrapped in #ifndef OPENSSL_NO_GOST will be removed later. ok jsing
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 0e4c783d9e..5ef55c6b6c 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.172 2024/03/02 11:11:11 tb Exp $ 1# $OpenBSD: Makefile,v 1.173 2024/03/02 11:17:27 tb Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -357,7 +357,6 @@ SRCS+= e_chacha.c
357SRCS+= e_chacha20poly1305.c 357SRCS+= e_chacha20poly1305.c
358SRCS+= e_des.c 358SRCS+= e_des.c
359SRCS+= e_des3.c 359SRCS+= e_des3.c
360SRCS+= e_gost2814789.c
361SRCS+= e_idea.c 360SRCS+= e_idea.c
362SRCS+= e_null.c 361SRCS+= e_null.c
363SRCS+= e_rc2.c 362SRCS+= e_rc2.c
@@ -373,8 +372,6 @@ SRCS+= evp_key.c
373SRCS+= evp_names.c 372SRCS+= evp_names.c
374SRCS+= evp_pbe.c 373SRCS+= evp_pbe.c
375SRCS+= evp_pkey.c 374SRCS+= evp_pkey.c
376SRCS+= m_gost2814789.c
377SRCS+= m_gostr341194.c
378SRCS+= m_md4.c 375SRCS+= m_md4.c
379SRCS+= m_md5.c 376SRCS+= m_md5.c
380SRCS+= m_md5_sha1.c 377SRCS+= m_md5_sha1.c
@@ -394,22 +391,6 @@ SRCS+= pmeth_fn.c
394SRCS+= pmeth_gn.c 391SRCS+= pmeth_gn.c
395SRCS+= pmeth_lib.c 392SRCS+= pmeth_lib.c
396 393
397# gost/
398SRCS+= gost2814789.c
399SRCS+= gost89_keywrap.c
400SRCS+= gost89_params.c
401SRCS+= gost89imit_ameth.c
402SRCS+= gost89imit_pmeth.c
403SRCS+= gost_asn1.c
404SRCS+= gost_err.c
405SRCS+= gostr341001.c
406SRCS+= gostr341001_ameth.c
407SRCS+= gostr341001_key.c
408SRCS+= gostr341001_params.c
409SRCS+= gostr341001_pmeth.c
410SRCS+= gostr341194.c
411SRCS+= streebog.c
412
413# hkdf/ 394# hkdf/
414SRCS+= hkdf.c 395SRCS+= hkdf.c
415 396
@@ -728,7 +709,6 @@ HDRS=\
728 ${LCRYPTO_SRC}/engine/engine.h \ 709 ${LCRYPTO_SRC}/engine/engine.h \
729 ${LCRYPTO_SRC}/err/err.h \ 710 ${LCRYPTO_SRC}/err/err.h \
730 ${LCRYPTO_SRC}/evp/evp.h \ 711 ${LCRYPTO_SRC}/evp/evp.h \
731 ${LCRYPTO_SRC}/gost/gost.h \
732 ${LCRYPTO_SRC}/hkdf/hkdf.h \ 712 ${LCRYPTO_SRC}/hkdf/hkdf.h \
733 ${LCRYPTO_SRC}/hmac/hmac.h \ 713 ${LCRYPTO_SRC}/hmac/hmac.h \
734 ${LCRYPTO_SRC}/idea/idea.h \ 714 ${LCRYPTO_SRC}/idea/idea.h \