forked from pool/Botan
775d045da9
* Fix integer overflow during BER decoding, found by Falko Strenzke. This bug is not thought to be directly exploitable but upgrading ASAP is advised. (CVE-2016-9132) * Fix two cases where (in error situations) an exception would be thrown from a destructor, causing a call to std::terminate. * When RC4 is disabled in the build, also prevent it from being included in the OpenSSL provider. (GH #638) * Use constant time modular inverse algorithm to avoid possible side channel attack against ECDSA (CVE-2016-2849) * Use constant time PKCS #1 unpadding to avoid possible side channel attack against RSA decryption (CVE-2015-7827) * Avoid a compilation problem in OpenSSL engine when ECDSA was disabled. Gentoo bug 542010 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/Botan?expand=0&rev=62
18 lines
786 B
Diff
18 lines
786 B
Diff
---
|
|
configure.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: Botan-1.10.14/configure.py
|
|
===================================================================
|
|
--- Botan-1.10.14.orig/configure.py 2016-11-28 11:52:20.000000000 +0100
|
|
+++ Botan-1.10.14/configure.py 2016-12-28 10:59:39.592584921 +0100
|
|
@@ -1140,7 +1140,7 @@ def create_template_vars(build_config, o
|
|
options.cpu, options.debug_build),
|
|
|
|
'lib_opt': cc.library_opt_flags(options),
|
|
- 'mach_opt': cc.mach_opts(options.arch, options.cpu),
|
|
+ 'mach_opt': '',
|
|
'check_opt': '' if options.no_optimizations else cc.check_opt_flags,
|
|
'lang_flags': cc.lang_flags + options.extra_flags,
|
|
'warn_flags': warning_flags(cc.warning_flags,
|