diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index 0ace6280df761e92ebf1c7cd0dd18d5ce508dfe3..02ad438a6eac874c6e3c1f8170fc2eb2992bd65b 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -994,22 +994,7 @@ size_t tls12_get_psigalgs(SSL *s, const unsigned char **psigs) return s->cert->conf_sigalgslen; } else { *psigs = tls12_sigalgs; -#ifndef OPENSSL_NO_GOST - /* - * We expect that GOST 2001 signature and GOST 34.11-94 hash are present in all engines - * and GOST 2012 algorithms are not always present. - * It may change when the old algorithms are deprecated. - */ - if ((EVP_get_digestbynid(NID_id_GostR3411_94) != NULL) - && (EVP_get_digestbynid(NID_id_GostR3411_2012_256) == NULL)) { - return sizeof(tls12_sigalgs) - 4; - } else if (EVP_get_digestbynid(NID_id_GostR3411_94) == NULL) { - return sizeof(tls12_sigalgs) - 6; - } return sizeof(tls12_sigalgs); -#else - return sizeof(tls12_sigalgs); -#endif } }