diff options
author | 2014-12-10 15:36:46 +0000 | |
---|---|---|
committer | 2014-12-10 15:36:46 +0000 | |
commit | 829c9983835882d17ba9edba19f49ebc0fc4186e (patch) | |
tree | 7ad8709f781116a7a6fb21045e30a4ed14a61b95 /lib/libssl/src/ssl/ssl_cert.c | |
parent | retire shutdown hooks; ok deraadt, krw (diff) | |
download | wireguard-openbsd-829c9983835882d17ba9edba19f49ebc0fc4186e.tar.xz wireguard-openbsd-829c9983835882d17ba9edba19f49ebc0fc4186e.zip |
Remove support for GOST R 34.10-94 signature authentication, along with
the two ciphersuites that use it. GOST94 public/private keys have been
long obsoleted and libcrypto does not have support for them anyway.
Discussed with Dmitry Eremin-Solenikov.
Diffstat (limited to 'lib/libssl/src/ssl/ssl_cert.c')
-rw-r--r-- | lib/libssl/src/ssl/ssl_cert.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/src/ssl/ssl_cert.c b/lib/libssl/src/ssl/ssl_cert.c index 8f830d990ab..323421f5dbc 100644 --- a/lib/libssl/src/ssl/ssl_cert.c +++ b/lib/libssl/src/ssl/ssl_cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_cert.c,v 1.47 2014/12/06 14:24:26 jsing Exp $ */ +/* $OpenBSD: ssl_cert.c,v 1.48 2014/12/10 15:36:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -167,7 +167,6 @@ ssl_cert_set_default_md(CERT *cert) cert->pkeys[SSL_PKEY_RSA_ENC].digest = EVP_sha1(); cert->pkeys[SSL_PKEY_ECC].digest = EVP_sha1(); #ifndef OPENSSL_NO_GOST - cert->pkeys[SSL_PKEY_GOST94].digest = EVP_gostr341194(); cert->pkeys[SSL_PKEY_GOST01].digest = EVP_gostr341194(); #endif } |