From: Hans-Christoph Steiner Date: Wed, 13 May 2015 21:50:08 +0000 (-0400) Subject: support all APK signing key types: DSA, EC, RSA X-Git-Tag: 0.4.0~74^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fd0e2ab97e3641f94f4350c02295d1095bc536c6;p=fdroidserver.git support all APK signing key types: DSA, EC, RSA "A signature block file with a .DSA, .RSA, or .EC extension" https://docs.oracle.com/javase/7/docs/technotes/tools/windows/jarsigner.html --- diff --git a/fdroidserver/update.py b/fdroidserver/update.py index ee7435e7..b5fac3b8 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -328,7 +328,8 @@ def resize_all_icons(repodirs): resize_icon(iconpath, density) -cert_path_regex = re.compile(r'^META-INF/.*\.RSA$') +# A signature block file with a .DSA, .RSA, or .EC extension +cert_path_regex = re.compile(r'^META-INF/.*\.(DSA|EC|RSA)$') def getsig(apkpath):