bdf3209e96
- update to 1.0.2a * Major changes since 1.0.1: - Suite B support for TLS 1.2 and DTLS 1.2 - Support for DTLS 1.2 - TLS automatic EC curve selection. - API to set TLS supported signature algorithms and curves - SSL_CONF configuration API. - TLS Brainpool support. - ALPN support. - CMS support for RSA-PSS, RSA-OAEP, ECDH and X9.42 DH. - packaging changes: * merged patches modifying CIPHER_LIST into one, dropping: - openssl-1.0.1e-add-suse-default-cipher-header.patch - openssl-libssl-noweakciphers.patch * fix a manpage with invalid name - added openssl-fix_invalid_manpage_name.patch * remove a missing fips function - openssl-missing_FIPS_ec_group_new_by_curve_name.patch * reimported patches from Fedora dropped patches: - openssl-1.0.1c-default-paths.patch - openssl-1.0.1c-ipv6-apps.patch - openssl-1.0.1e-fips-ctor.patch - openssl-1.0.1e-fips-ec.patch - openssl-1.0.1e-fips.patch - openssl-1.0.1e-new-fips-reqs.patch - VIA_padlock_support_on_64systems.patch added patches: - openssl-1.0.2a-default-paths.patch - openssl-1.0.2a-fips-ctor.patch (forwarded request 309611 from vitezslav_cizek) OBS-URL: https://build.opensuse.org/request/show/310849 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openssl?expand=0&rev=127
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
Index: openssl-1.0.2a/crypto/fips/fips_rand_lcl.h
|
|
===================================================================
|
|
--- openssl-1.0.2a.orig/crypto/fips/fips_rand_lcl.h 2015-05-24 13:18:49.460282194 +0200
|
|
+++ openssl-1.0.2a/crypto/fips/fips_rand_lcl.h 2015-05-24 13:42:20.793812240 +0200
|
|
@@ -51,6 +51,8 @@
|
|
* ====================================================================
|
|
*/
|
|
|
|
+#pragma GCC visibility push(hidden)
|
|
+
|
|
typedef struct drbg_hash_ctx_st DRBG_HASH_CTX;
|
|
typedef struct drbg_hmac_ctx_st DRBG_HMAC_CTX;
|
|
typedef struct drbg_ctr_ctx_st DRBG_CTR_CTX;
|
|
@@ -211,3 +213,5 @@ const struct evp_cipher_st *FIPS_get_cip
|
|
#define FIPS_digestupdate EVP_DigestUpdate
|
|
#define FIPS_digestfinal EVP_DigestFinal
|
|
#define M_EVP_MD_size EVP_MD_size
|
|
+
|
|
+#pragma GCC visibility pop
|
|
Index: openssl-1.0.2a/crypto/fips/fips_rsa_x931g.c
|
|
===================================================================
|
|
--- openssl-1.0.2a.orig/crypto/fips/fips_rsa_x931g.c 2015-05-24 13:18:49.461282208 +0200
|
|
+++ openssl-1.0.2a/crypto/fips/fips_rsa_x931g.c 2015-05-24 13:42:20.793812240 +0200
|
|
@@ -65,7 +65,7 @@
|
|
#ifdef OPENSSL_FIPS
|
|
# include <openssl/fips.h>
|
|
|
|
-extern int fips_check_rsa(RSA *rsa);
|
|
+extern int fips_check_rsa(RSA *rsa) __attribute__ ((visibility ("hidden")));
|
|
#endif
|
|
|
|
/* X9.31 RSA key derivation and generation */
|