1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

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
This commit is contained in:
Hans-Christoph Steiner 2015-05-13 17:50:08 -04:00
parent 255afa3894
commit fd0e2ab97e

View File

@ -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):