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/evp/pmeth_lib.c | |
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/evp/pmeth_lib.c')
-rw-r--r-- | src/lib/libcrypto/evp/pmeth_lib.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libcrypto/evp/pmeth_lib.c b/src/lib/libcrypto/evp/pmeth_lib.c index a0d57594d8..a2a9ad9c7b 100644 --- a/src/lib/libcrypto/evp/pmeth_lib.c +++ b/src/lib/libcrypto/evp/pmeth_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pmeth_lib.c,v 1.38 2024/03/02 10:04:40 tb Exp $ */ | 1 | /* $OpenBSD: pmeth_lib.c,v 1.39 2024/03/02 11:17:27 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -76,8 +76,6 @@ extern const EVP_PKEY_METHOD dh_pkey_meth; | |||
76 | extern const EVP_PKEY_METHOD dsa_pkey_meth; | 76 | extern const EVP_PKEY_METHOD dsa_pkey_meth; |
77 | extern const EVP_PKEY_METHOD ec_pkey_meth; | 77 | extern const EVP_PKEY_METHOD ec_pkey_meth; |
78 | extern const EVP_PKEY_METHOD ed25519_pkey_meth; | 78 | extern const EVP_PKEY_METHOD ed25519_pkey_meth; |
79 | extern const EVP_PKEY_METHOD gostimit_pkey_meth; | ||
80 | extern const EVP_PKEY_METHOD gostr01_pkey_meth; | ||
81 | extern const EVP_PKEY_METHOD hkdf_pkey_meth; | 79 | extern const EVP_PKEY_METHOD hkdf_pkey_meth; |
82 | extern const EVP_PKEY_METHOD hmac_pkey_meth; | 80 | extern const EVP_PKEY_METHOD hmac_pkey_meth; |
83 | extern const EVP_PKEY_METHOD rsa_pkey_meth; | 81 | extern const EVP_PKEY_METHOD rsa_pkey_meth; |
@@ -90,8 +88,6 @@ static const EVP_PKEY_METHOD *pkey_methods[] = { | |||
90 | &dsa_pkey_meth, | 88 | &dsa_pkey_meth, |
91 | &ec_pkey_meth, | 89 | &ec_pkey_meth, |
92 | &ed25519_pkey_meth, | 90 | &ed25519_pkey_meth, |
93 | &gostimit_pkey_meth, | ||
94 | &gostr01_pkey_meth, | ||
95 | &hkdf_pkey_meth, | 91 | &hkdf_pkey_meth, |
96 | &hmac_pkey_meth, | 92 | &hmac_pkey_meth, |
97 | &rsa_pkey_meth, | 93 | &rsa_pkey_meth, |