-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
829 additions
and
521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
AusweisApp2 1.14.2 | ||
^^^^^^^^^^^^^^^^^^ | ||
|
||
**Releasedatum:** 20. Juni 2018 | ||
|
||
|
||
|
||
Anwender | ||
"""""""" | ||
- Optimierungen in der Benutzerfreundlichkeit. | ||
|
||
- Ein leerer Zweck im Berechtigungszertifikat wird nun | ||
korrekt dargestellt. | ||
|
||
|
||
Entwickler | ||
"""""""""" | ||
- Unterstützung von Vor-Ort-Auslesen von Ausweisdaten unter | ||
Anwesenden (gem. §18a PAuswG). | ||
|
||
- Aktualisierung von OpenSSL auf die Version 1.0.2o. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Release Notes | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
1.14.2 | ||
1.14.1 | ||
1.14.0 | ||
announce | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ Versionszweig 1.14 | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
1.14.2 | ||
1.14.1 | ||
1.14.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
patches/openssl-RSA-key-generation-ensure-BN_mod_inverse-and-BN_mod_.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From 349a41da1ad88ad87825414752a8ff5fdd6a6c3f Mon Sep 17 00:00:00 2001 | ||
From: Billy Brumley <[email protected]> | ||
Date: Wed, 11 Apr 2018 10:10:58 +0300 | ||
Subject: [PATCH] RSA key generation: ensure BN_mod_inverse and BN_mod_exp_mont | ||
both get called with BN_FLG_CONSTTIME flag set. | ||
|
||
CVE-2018-0737 | ||
|
||
Reviewed-by: Rich Salz <[email protected]> | ||
Reviewed-by: Matt Caswell <[email protected]> | ||
(cherry picked from commit 6939eab03a6e23d2bd2c3f5e34fe1d48e542e787) | ||
--- | ||
crypto/rsa/rsa_gen.c | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git x/crypto/rsa/rsa_gen.c y/crypto/rsa/rsa_gen.c | ||
index 9ca5dfefb7..42b89a8dfa 100644 | ||
--- x/crypto/rsa/rsa_gen.c | ||
+++ y/crypto/rsa/rsa_gen.c | ||
@@ -156,6 +156,8 @@ static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, | ||
if (BN_copy(rsa->e, e_value) == NULL) | ||
goto err; | ||
|
||
+ BN_set_flags(rsa->p, BN_FLG_CONSTTIME); | ||
+ BN_set_flags(rsa->q, BN_FLG_CONSTTIME); | ||
BN_set_flags(r2, BN_FLG_CONSTTIME); | ||
/* generate p and q */ | ||
for (;;) { | ||
-- | ||
2.17.0 | ||
|
75 changes: 75 additions & 0 deletions
75
patches/openssl-Revert-Configure-use-a-better-method-to-identify-gcc.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
From 2a33b07d56c7e30a18dda5760111af267271c236 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Andr=C3=A9=20Klitzing?= <[email protected]> | ||
Date: Tue, 24 Apr 2018 16:13:56 +0200 | ||
Subject: [PATCH] Revert "Configure: use a better method to identify gcc and | ||
derivates" | ||
|
||
This reverts commit 78e9e3f945935c91d8dfe0e832a95d6ea8d05f34. | ||
--- | ||
Configure | 22 ++++++++-------------- | ||
1 file changed, 8 insertions(+), 14 deletions(-) | ||
|
||
diff --git x/Configure y/Configure | ||
index 744b493b96..fe7565ebd9 100755 | ||
--- x/Configure | ||
+++ y/Configure | ||
@@ -1269,7 +1269,7 @@ my ($prelflags,$postlflags)=split('%',$lflags); | ||
if (defined($postlflags)) { $lflags=$postlflags; } | ||
else { $lflags=$prelflags; undef $prelflags; } | ||
|
||
-if ($target =~ /^mingw/ && `$cross_compile_prefix$cc --target-help 2>&1` !~ m/\-mno\-cygwin/m) | ||
+if ($target =~ /^mingw/ && `$cc --target-help 2>&1` !~ m/\-mno\-cygwin/m) | ||
{ | ||
$cflags =~ s/\-mno\-cygwin\s*//; | ||
$shared_ldflag =~ s/\-mno\-cygwin\s*//; | ||
@@ -1661,25 +1661,18 @@ if ($shlib_version_number =~ /(^[0-9]*)\.([0-9\.]*)/) | ||
$shlib_minor=$2; | ||
} | ||
|
||
-my %predefined; | ||
- | ||
-# collect compiler pre-defines from gcc or gcc-alike... | ||
-open(PIPE, "$cross_compile_prefix$cc -dM -E -x c /dev/null 2>&1 |"); | ||
-while (<PIPE>) { | ||
- m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last; | ||
- $predefined{$1} = defined($2) ? $2 : ""; | ||
-} | ||
-close(PIPE); | ||
+my $ecc = $cc; | ||
+$ecc = "clang" if `$cc --version 2>&1` =~ /clang/; | ||
|
||
if ($strict_warnings) | ||
{ | ||
my $wopt; | ||
- die "ERROR --strict-warnings requires gcc or clang" unless defined($predefined{__GNUC__}); | ||
+ die "ERROR --strict-warnings requires gcc or clang" unless ($ecc =~ /gcc$/ or $ecc =~ /clang$/); | ||
foreach $wopt (split /\s+/, $gcc_devteam_warn) | ||
{ | ||
$cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/) | ||
} | ||
- if (defined($predefined{__clang__})) | ||
+ if ($ecc eq "clang") | ||
{ | ||
foreach $wopt (split /\s+/, $clang_devteam_warn) | ||
{ | ||
@@ -1730,14 +1723,15 @@ while (<IN>) | ||
s/^NM=\s*/NM= \$\(CROSS_COMPILE\)/; | ||
s/^RANLIB=\s*/RANLIB= \$\(CROSS_COMPILE\)/; | ||
s/^RC=\s*/RC= \$\(CROSS_COMPILE\)/; | ||
- s/^MAKEDEPPROG=.*$/MAKEDEPPROG= \$\(CROSS_COMPILE\)$cc/ if $predefined{__GNUC__} >= 3; | ||
+ s/^MAKEDEPPROG=.*$/MAKEDEPPROG= \$\(CROSS_COMPILE\)$cc/ if $cc eq "gcc"; | ||
} | ||
else { | ||
s/^CC=.*$/CC= $cc/; | ||
s/^AR=\s*ar/AR= $ar/; | ||
s/^RANLIB=.*/RANLIB= $ranlib/; | ||
s/^RC=.*/RC= $windres/; | ||
- s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $predefined{__GNUC__} >= 3; | ||
+ s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $cc eq "gcc"; | ||
+ s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $ecc eq "gcc" || $ecc eq "clang"; | ||
} | ||
s/^CFLAG=.*$/CFLAG= $cflags/; | ||
s/^DEPFLAG=.*$/DEPFLAG=$depflags/; | ||
-- | ||
2.17.0 | ||
|
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
patches/qt-QCoreTextFontEngine-Fix-build-with-Xcode-9.3.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
From 05eed1cd4505bf9912b84ed39ab1ad22846e7d09 Mon Sep 17 00:00:00 2001 | ||
From: Gabriel de Dietrich <[email protected]> | ||
Date: Fri, 30 Mar 2018 11:58:16 -0700 | ||
Subject: QCoreTextFontEngine: Fix build with Xcode 9.3 | ||
|
||
Apple LLVM version 9.1.0 (clang-902.0.39.1) | ||
|
||
Error message: | ||
|
||
.../qfontengine_coretext.mm:827:20: error: qualified reference to | ||
'QFixed' is a constructor name rather than a type in this context | ||
return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont))); | ||
|
||
Change-Id: Iebe26b3b087a16b10664208fc8851cbddb47f043 | ||
Reviewed-by: Konstantin Ritt <[email protected]> | ||
--- | ||
src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git x/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm y/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | ||
index 66baf162d9..89794ef109 100644 | ||
--- x/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | ||
+++ y/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | ||
@@ -830,7 +830,7 @@ void QCoreTextFontEngine::getUnscaledGlyph(glyph_t glyph, QPainterPath *path, gl | ||
|
||
QFixed QCoreTextFontEngine::emSquareSize() const | ||
{ | ||
- return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont))); | ||
+ return QFixed(int(CTFontGetUnitsPerEm(ctfont))); | ||
} | ||
|
||
QFontEngine *QCoreTextFontEngine::cloneWithSize(qreal pixelSize) const | ||
-- | ||
2.16.2 | ||
|
Oops, something went wrong.