summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/opensslfeatures.h
diff options
context:
space:
mode:
authortb <>2024-03-02 11:17:27 +0000
committertb <>2024-03-02 11:17:27 +0000
commit8ea5a70cb7cc8a88e0f55a52b08b9bf917e9ab4d (patch)
tree8c07af34e7527067f90550ed8765d719f02813b4 /src/lib/libcrypto/opensslfeatures.h
parent26367add3db68a3e89bda58a3c85174507f8e71a (diff)
downloadopenbsd-8ea5a70cb7cc8a88e0f55a52b08b9bf917e9ab4d.tar.gz
openbsd-8ea5a70cb7cc8a88e0f55a52b08b9bf917e9ab4d.tar.bz2
openbsd-8ea5a70cb7cc8a88e0f55a52b08b9bf917e9ab4d.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/opensslfeatures.h')
-rw-r--r--src/lib/libcrypto/opensslfeatures.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/opensslfeatures.h b/src/lib/libcrypto/opensslfeatures.h
index 02d5228953..faebb1f345 100644
--- a/src/lib/libcrypto/opensslfeatures.h
+++ b/src/lib/libcrypto/opensslfeatures.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: opensslfeatures.h,v 1.41 2023/07/28 09:53:55 tb Exp $ */ 1/* $OpenBSD: opensslfeatures.h,v 1.42 2024/03/02 11:17:27 tb Exp $ */
2/* 2/*
3 * Feature flags for LibreSSL... so you can actually tell when things 3 * Feature flags for LibreSSL... so you can actually tell when things
4 * are enabled, rather than not being able to tell when things are 4 * are enabled, rather than not being able to tell when things are
@@ -67,7 +67,7 @@
67/* #define OPENSSL_NO_ERR */ 67/* #define OPENSSL_NO_ERR */
68/* #define OPENSSL_NO_FUZZ_AFL */ 68/* #define OPENSSL_NO_FUZZ_AFL */
69/* #define OPENSSL_NO_FUZZ_LIBFUZZER */ 69/* #define OPENSSL_NO_FUZZ_LIBFUZZER */
70/* #define OPENSSL_NO_GOST */ 70#define OPENSSL_NO_GOST
71#define OPENSSL_NO_HEARTBEATS 71#define OPENSSL_NO_HEARTBEATS
72/* #define OPENSSL_NO_HW */ 72/* #define OPENSSL_NO_HW */
73/* #define OPENSSL_NO_HW_PADLOCK */ 73/* #define OPENSSL_NO_HW_PADLOCK */