diff options
author | tb <> | 2024-03-02 11:17:27 +0000 |
---|---|---|
committer | tb <> | 2024-03-02 11:17:27 +0000 |
commit | d0dca40aabf970e230bf037138cf9765723fbeec (patch) | |
tree | 8c07af34e7527067f90550ed8765d719f02813b4 /src/lib/libcrypto/Makefile | |
parent | 3228d4664f5cbc8a4b11e8d1cf7aa6636946f529 (diff) | |
download | openbsd-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/Makefile | 22 |
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 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -357,7 +357,6 @@ SRCS+= e_chacha.c | |||
357 | SRCS+= e_chacha20poly1305.c | 357 | SRCS+= e_chacha20poly1305.c |
358 | SRCS+= e_des.c | 358 | SRCS+= e_des.c |
359 | SRCS+= e_des3.c | 359 | SRCS+= e_des3.c |
360 | SRCS+= e_gost2814789.c | ||
361 | SRCS+= e_idea.c | 360 | SRCS+= e_idea.c |
362 | SRCS+= e_null.c | 361 | SRCS+= e_null.c |
363 | SRCS+= e_rc2.c | 362 | SRCS+= e_rc2.c |
@@ -373,8 +372,6 @@ SRCS+= evp_key.c | |||
373 | SRCS+= evp_names.c | 372 | SRCS+= evp_names.c |
374 | SRCS+= evp_pbe.c | 373 | SRCS+= evp_pbe.c |
375 | SRCS+= evp_pkey.c | 374 | SRCS+= evp_pkey.c |
376 | SRCS+= m_gost2814789.c | ||
377 | SRCS+= m_gostr341194.c | ||
378 | SRCS+= m_md4.c | 375 | SRCS+= m_md4.c |
379 | SRCS+= m_md5.c | 376 | SRCS+= m_md5.c |
380 | SRCS+= m_md5_sha1.c | 377 | SRCS+= m_md5_sha1.c |
@@ -394,22 +391,6 @@ SRCS+= pmeth_fn.c | |||
394 | SRCS+= pmeth_gn.c | 391 | SRCS+= pmeth_gn.c |
395 | SRCS+= pmeth_lib.c | 392 | SRCS+= pmeth_lib.c |
396 | 393 | ||
397 | # gost/ | ||
398 | SRCS+= gost2814789.c | ||
399 | SRCS+= gost89_keywrap.c | ||
400 | SRCS+= gost89_params.c | ||
401 | SRCS+= gost89imit_ameth.c | ||
402 | SRCS+= gost89imit_pmeth.c | ||
403 | SRCS+= gost_asn1.c | ||
404 | SRCS+= gost_err.c | ||
405 | SRCS+= gostr341001.c | ||
406 | SRCS+= gostr341001_ameth.c | ||
407 | SRCS+= gostr341001_key.c | ||
408 | SRCS+= gostr341001_params.c | ||
409 | SRCS+= gostr341001_pmeth.c | ||
410 | SRCS+= gostr341194.c | ||
411 | SRCS+= streebog.c | ||
412 | |||
413 | # hkdf/ | 394 | # hkdf/ |
414 | SRCS+= hkdf.c | 395 | SRCS+= 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 \ |