mirror of
https://github.com/openssl/openssl.git
synced 2024-11-24 18:43:34 +08:00
For improved compatibility with 'strange' certificates, add some
digest aliases (as found in OpenSSL_add_all_digests).
This commit is contained in:
parent
a25b265d27
commit
325ae88efb
@ -88,9 +88,13 @@ int SSL_library_init(void)
|
||||
#ifndef NO_SHA
|
||||
EVP_add_digest(EVP_sha1()); /* RSA with sha1 */
|
||||
EVP_add_digest_alias(SN_sha1,"ssl3-sha1");
|
||||
EVP_add_digest_alias(SN_sha1WithRSAEncryption,SN_sha1WithRSA);
|
||||
#endif
|
||||
#if !defined(NO_SHA) && !defined(NO_DSA)
|
||||
EVP_add_digest(EVP_dss1()); /* DSA with sha1 */
|
||||
EVP_add_digest_alias(SN_dsaWithSHA1,SN_dsaWithSHA1_2);
|
||||
EVP_add_digest_alias(SN_dsaWithSHA1,"DSS1");
|
||||
EVP_add_digest_alias(SN_dsaWithSHA1,"dss1");
|
||||
#endif
|
||||
|
||||
/* If you want support for phased out ciphers, add the following */
|
||||
|
Loading…
Reference in New Issue
Block a user