17 lines
763 B
Diff
17 lines
763 B
Diff
diff -up wpa_supplicant-0.7.3/src/crypto/tls_openssl.c.more-openssl-algs wpa_supplicant-0.7.3/src/crypto/tls_openssl.c
|
|
--- wpa_supplicant-0.7.3/src/crypto/tls_openssl.c.more-openssl-algs 2010-09-07 10:43:39.000000000 -0500
|
|
+++ wpa_supplicant-0.7.3/src/crypto/tls_openssl.c 2010-12-08 10:01:02.967664004 -0600
|
|
@@ -710,6 +710,11 @@ void * tls_init(const struct tls_config
|
|
#endif /* OPENSSL_FIPS */
|
|
#endif /* CONFIG_FIPS */
|
|
SSL_load_error_strings();
|
|
+ /* Only add potentially weak hashes and encryption algorithms
|
|
+ * when FIPS mode is not enabled.
|
|
+ */
|
|
+ if (!conf || !conf->fips_mode)
|
|
+ OpenSSL_add_all_algorithms();
|
|
SSL_library_init();
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x0090800fL) && !defined(OPENSSL_NO_SHA256)
|
|
EVP_add_digest(EVP_sha256());
|
|
|